Files
quixotic/.serena/memories/docker_compose_cleanup.md
Andrey Kondratev ec9c541675 envs
2025-08-29 12:32:37 +05:00

514 B

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