Skip to content

Commit

Permalink
Hotfix dev setup for docker-compose.yml (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkHmnv authored Jun 26, 2024
1 parent 23614ea commit af2e9e2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ services:
- ./api:/api
command: /usr/bin/supervisord
environment:
- REDIS_USER=${REDIS_USER}
- REDIS_HOST=${REDIS_HOST}
- REDIS_PORT=${REDIS_PORT}
- REDIS_PASSWORD=${REDIS_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_HOST=${POSTGRES_HOST}
- REDIS_USER=${REDIS_USER:-default}
- REDIS_HOST=${REDIS_HOST:-redis}
- REDIS_PORT=${REDIS_PORT:-6379}
- REDIS_PASSWORD=${REDIS_PASSWORD:-}
- POSTGRES_USER=${POSTGRES_USER:-devuser}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-changeme}
- POSTGRES_DB=${POSTGRES_DB:-devdb}
- POSTGRES_HOST=${POSTGRES_HOST:-postgres-db}
- SMTP_HOST=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_USER=${SMTP_USER}
Expand Down

0 comments on commit af2e9e2

Please sign in to comment.