Skip to content

Commit 798ea41

Browse files
committed
Sort keys alphabetically in docker-compose-prod.yml
1 parent 1996c39 commit 798ea41

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker-compose-prod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
services:
22
api:
3-
image: ${image}:${tag}
43
command: "poetry run gunicorn go_capture.wsgi:application --bind 0.0.0.0:8000 -t 60"
5-
env_file:
6-
- .env
74
environment:
85
- CELERY_BROKER_URL=amqp://guest:guest@broker:5672
6+
env_file:
7+
- .env
8+
image: ${image}:${tag}
99
ports:
1010
- 8000:8000
1111
volumes:
1212
- media:/api/media
1313
worker:
14-
image: ${image}:${tag}
1514
command: "poetry run celery -A go_capture.tasks worker"
1615
depends_on:
1716
- broker
@@ -20,6 +19,7 @@ services:
2019
- CELERY_RESULT_BACKEND=rpc
2120
env_file:
2221
- .env
22+
image: ${image}:${tag}
2323
volumes:
2424
- media:/api/media
2525
broker:

0 commit comments

Comments
 (0)