diff --git a/docker-compose.yml b/docker-compose.yml index e8b9b03..3ab86d1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,6 +26,7 @@ services: certbot: image: certbot/certbot container_name: certbot + restart: unless-stopped volumes: - ./log/certbot:/var/log/letsencrypt - ./data/certbot/conf:/etc/letsencrypt @@ -61,9 +62,12 @@ services: environment: - SECRET_KEY_BASE=${SECRET_KEY_BASE} - LOADBALANCER_SECRET=${LOADBALANCER_SECRET} + - LOADBALANCER_SECRETS=${LOADBALANCER_SECRETS} - REDIS_URL=${REDIS_URL:-redis://redis:6379} - DATABASE_URL=${DATABASE_URL:-postgres://postgres:password@postgres:5432/scalelite?pool=5} - URL_HOST=${URL_HOST} + - SERVER_ID_IS_HOSTNAME=${SERVER_ID_IS_HOSTNAME:-true} + - GET_MEETINGS_API_DISABLED=${GET_MEETINGS_API_DISABLED:-true} depends_on: - postgres - redis diff --git a/dotenv b/dotenv index f20412d..89b35b3 100644 --- a/dotenv +++ b/dotenv @@ -1,6 +1,7 @@ ### Required by scalelite-api # SECRET_KEY_BASE= # LOADBALANCER_SECRET= +# LOADBALANCER_SECRETS= # ### Required by scalelite-api and scalelite-poller # REDIS_URL=