Skip to content

Commit

Permalink
fix .env reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed May 28, 2024
1 parent 4ff90e6 commit fbee9df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions infrastructure/docker-compose.run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@ services:
image: ${DOCKER_IMAGE_CONFERENCES}:${DOCKER_TAG}
command: uvicorn main:app --host 0.0.0.0 --reload # sleep 9999999999
env_file:
- ../.env
- .env
ports:
- ${SERVER_PORT_CONFERENCES}:8000
- "${SERVER_PORT_CONFERENCES}:8000"
volumes:
- opencon-logs:/var/log/opencon

push_notifications:
image: ${DOCKER_IMAGE_PUSH_NOTIFICATIONS}:${DOCKER_TAG}
command: python workers/push_notifications.py # sleep 99999
env_file:
- ../.env
- .env
ports:
- ${SERVER_PORT_PUSH_NOTIFICATIONS}:8080
- "${SERVER_PORT_PUSH_NOTIFICATIONS}:8080"
volumes:
- opencon-logs:/var/log/opencon

telegram:
image: ${DOCKER_IMAGE_TELEGRAM}:${DOCKER_TAG}
command: python workers/telegram.py # sleep 99999
env_file:
- ../.env
- .env
ports:
- ${SERVER_PORT_TELEGRAM}:8080
- "${SERVER_PORT_TELEGRAM}:8080"
volumes:
- opencon-logs:/var/log/opencon

Expand Down

0 comments on commit fbee9df

Please sign in to comment.