ansible/roles/docker/templates/heyform-compose.yml.j2

63 lines
1.4 KiB
Django/Jinja

services:
heyform:
image: heyform/community-edition:latest
restart: always
volumes:
# Persist uploaded images
- assets:/app/static/upload
depends_on:
- mongo
- keydb
labels:
glance.name: Heyform
glance.icon: si:googleforms
glance.url: https://forms.nerder.land/
glance.description: Forms server
glance.id: heyform
environment:
- APP_HOMEPAGE_URL=http://forms.nerder.land
- SESSION_KEY={{ heyform_session_key }}
- FORM_ENCRYPTION_KEY={{ heyform_encryption_key }}
- MONGO_URI='mongodb://mongo:27017/heyform'
- REDIS_HOST=keydb
- REDIS_PORT=6379
- SMTP_FROM=nerderland@updates.thesatelliteoflove.com
- SMTP_HOST=smtp.resend.com
- SMTP_PORT=465
- SMTP_USER=resend
- SMTP_PASSWORD={{ resend_key }}
- SMTP_SECURE=true
mongo:
image: percona/percona-server-mongodb:4.4
restart: always
labels:
glance.parent: heyform
glance.name: MongoDB
volumes:
# Persist MongoDB data
- database:/data/db
keydb:
image: eqalpha/keydb:latest
restart: always
command: keydb-server --appendonly yes
labels:
glance.parent: heyform
glance.name: KeyDB
volumes:
# Persist KeyDB data
- keydb:/data
volumes:
assets:
driver: local
database:
driver: local
keydb:
driver: local
networks:
default:
external: true
name: lava