File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,29 +4,29 @@ services:
4
4
image : ${DOCKER_IMAGE_CONFERENCES}:${DOCKER_TAG}
5
5
command : uvicorn main:app --host 0.0.0.0 --reload # sleep 9999999999
6
6
env_file :
7
- - ../. env
7
+ - .env
8
8
ports :
9
- - ${SERVER_PORT_CONFERENCES}:8000
9
+ - " ${SERVER_PORT_CONFERENCES}:8000"
10
10
volumes :
11
11
- opencon-logs:/var/log/opencon
12
12
13
13
push_notifications :
14
14
image : ${DOCKER_IMAGE_PUSH_NOTIFICATIONS}:${DOCKER_TAG}
15
15
command : python workers/push_notifications.py # sleep 99999
16
16
env_file :
17
- - ../. env
17
+ - .env
18
18
ports :
19
- - ${SERVER_PORT_PUSH_NOTIFICATIONS}:8080
19
+ - " ${SERVER_PORT_PUSH_NOTIFICATIONS}:8080"
20
20
volumes :
21
21
- opencon-logs:/var/log/opencon
22
22
23
23
telegram :
24
24
image : ${DOCKER_IMAGE_TELEGRAM}:${DOCKER_TAG}
25
25
command : python workers/telegram.py # sleep 99999
26
26
env_file :
27
- - ../. env
27
+ - .env
28
28
ports :
29
- - ${SERVER_PORT_TELEGRAM}:8080
29
+ - " ${SERVER_PORT_TELEGRAM}:8080"
30
30
volumes :
31
31
- opencon-logs:/var/log/opencon
32
32
You can’t perform that action at this time.
0 commit comments