15 lines
514 B
Markdown
15 lines
514 B
Markdown
# Docker Compose Cleanup
|
|
|
|
Removed duplicate environment variables from quixotic-app service in docker-compose.yml:
|
|
- TELEGRAM_BOT_TOKEN
|
|
- DOMAIN
|
|
- ACME_EMAIL
|
|
- POSTGRES_DB
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
|
|
These variables are already loaded via `env_file: .env.docker` so duplicating them in the environment section was unnecessary. Kept only the essential variables that need to be explicitly set:
|
|
- NODE_ENV: production
|
|
- PORT: 3000
|
|
- DATABASE_URL: constructed from postgres variables
|
|
- DATABASE_SSL: false |