Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions deploy/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
networks:
- storedog-net
web:
image: public.ecr.aws/x2b9z2t7/storedog/backend:1.0.4
image: public.ecr.aws/x2b9z2t7/storedog/backend:1.0.7
depends_on:
- 'postgres'
- 'redis'
Expand All @@ -38,7 +38,7 @@ services:
networks:
- storedog-net
worker:
image: public.ecr.aws/x2b9z2t7/storedog/backend:1.0.4
image: public.ecr.aws/x2b9z2t7/storedog/backend:1.0.7
command: bundle exec sidekiq -C config/sidekiq.yml
depends_on:
- 'postgres'
Expand All @@ -54,7 +54,7 @@ services:
networks:
- storedog-net
ads:
image: public.ecr.aws/x2b9z2t7/storedog/ads:1.0.4
image: public.ecr.aws/x2b9z2t7/storedog/ads:1.0.7
command: flask run --port=${ADS_PORT} --host=0.0.0.0
depends_on:
- postgres
Expand All @@ -74,8 +74,8 @@ services:
networks:
- storedog-net
discounts:
image: public.ecr.aws/x2b9z2t7/storedog/discounts:1.0.4
command: flask run --port=${DISCOUNTS_PORT} --host=0.0.0.0
image: public.ecr.aws/x2b9z2t7/storedog/discounts:1.0.7
command: ./my-wrapper-script.sh ${DISCOUNTS_PORT}
depends_on:
- postgres
environment:
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ services:
- DD_APPSEC_ENABLED=true
build:
context: ./services/discounts
command: ./my-wrapper-script.sh ${DISCOUNTS_PORT}
volumes:
- ./services/discounts:/app
ports:
Expand Down