Skip to content

Commit fbee9df

Browse files
committed
fix .env reference
1 parent 4ff90e6 commit fbee9df

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

infrastructure/docker-compose.run.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ services:
44
image: ${DOCKER_IMAGE_CONFERENCES}:${DOCKER_TAG}
55
command: uvicorn main:app --host 0.0.0.0 --reload # sleep 9999999999
66
env_file:
7-
- ../.env
7+
- .env
88
ports:
9-
- ${SERVER_PORT_CONFERENCES}:8000
9+
- "${SERVER_PORT_CONFERENCES}:8000"
1010
volumes:
1111
- opencon-logs:/var/log/opencon
1212

1313
push_notifications:
1414
image: ${DOCKER_IMAGE_PUSH_NOTIFICATIONS}:${DOCKER_TAG}
1515
command: python workers/push_notifications.py # sleep 99999
1616
env_file:
17-
- ../.env
17+
- .env
1818
ports:
19-
- ${SERVER_PORT_PUSH_NOTIFICATIONS}:8080
19+
- "${SERVER_PORT_PUSH_NOTIFICATIONS}:8080"
2020
volumes:
2121
- opencon-logs:/var/log/opencon
2222

2323
telegram:
2424
image: ${DOCKER_IMAGE_TELEGRAM}:${DOCKER_TAG}
2525
command: python workers/telegram.py # sleep 99999
2626
env_file:
27-
- ../.env
27+
- .env
2828
ports:
29-
- ${SERVER_PORT_TELEGRAM}:8080
29+
- "${SERVER_PORT_TELEGRAM}:8080"
3030
volumes:
3131
- opencon-logs:/var/log/opencon
3232

0 commit comments

Comments
 (0)