Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Baykanurov committed Oct 29, 2023
1 parent ce7f43c commit a2e0b09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
mongo:
container_name: post_db
image: mongo:${MONGO_IMAGE_TAG:-4.4}
image: mongo:${MONGO_IMAGE_TAG}
volumes:
- post_db:/data/db
networks:
Expand All @@ -11,7 +11,7 @@ services:
ui:
container_name: ui
build: ./ui
image: ${USERNAME:-baykanurov}/ui:${UI_IMAGE_TAG:-1.0}
image: ${USERNAME}/ui:${UI_IMAGE_TAG}
ports:
- ${UI_PORT:-9292}:9292/tcp
networks:
Expand All @@ -20,15 +20,15 @@ services:
post:
container_name: post
build: ./post-py
image: ${USERNAME:-baykanurov}/post:${POST_IMAGE_TAG:-1.0}
image: ${USERNAME}/post:${POST_IMAGE_TAG}
networks:
- back_net
- front_net

comment:
container_name: comment
build: ./comment
image: ${USERNAME:-baykanurov}/comment:${COMMENT_IMAGE_TAG:-1.0}
image: ${USERNAME}/comment:${COMMENT_IMAGE_TAG}
networks:
- back_net
- front_net
Expand Down

0 comments on commit a2e0b09

Please sign in to comment.