15 lines
608 B
Bash
15 lines
608 B
Bash
# SETTINGS from env.template
|
|
# Misc configuration
|
|
COMPOSE_PROJECT_NAME=poll-s1q-dev
|
|
PUBLIC_DOMAIN=poll.s1q.dev
|
|
TLS_DOMAIN=*.s1q.dev
|
|
|
|
# Container Tags
|
|
NGINX_TAG=1.29.1
|
|
BITPOLL_TAG=latest
|
|
POSTGRES_TAG=17.6
|
|
|
|
# Secrets
|
|
# BITPOLL_SECRET_KEY="" # generate via: openssl rand -base64 128 | tr -d '\n'
|
|
# BITPOLL_FIELD_ENCRYPTION_KEY="" # generate via: ./manage.py generate_encryption_key / docker run --rm --volume ./data/config/bitpoll:/opt/config --entrypoint ./manage.py ghcr.io/fsinfuhh/bitpoll:latest generate_encryption_key
|
|
# BITPOLL_DB_PASSWORD="password" # generate via: openssl rand -base64 128 | tr -d '\n'
|