Skip to content

Commit 2c3ced3

Browse files
committed
Change how image is specified in docker compose file
1 parent 1fb53b6 commit 2c3ced3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-compose-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
services:
22
api:
3-
image: ${account_id}.dkr.ecr.us-west-1.amazonaws.com/go-capture:${image_hash}
3+
image: ${image}:${tag}
44
env_file:
55
- .env
66
environment:
77
- CELERY_BROKER_URL=amqp://guest:guest@broker:5672
88
ports:
99
- 8000:8000
1010
worker:
11-
image: ${account_id}.dkr.ecr.us-west-1.amazonaws.com/go-capture:${image_hash}
11+
image: ${image}:${tag}
1212
command: "poetry run celery -A go_capture.tasks worker"
1313
depends_on:
1414
- broker

0 commit comments

Comments
 (0)