Skip to content

Commit 5433db5

Browse files
committed
fix: activated MongoDB in docker compose
1 parent ed6b90a commit 5433db5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docker-compose.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ services:
5050
- "5557:5555"
5151
depends_on:
5252
- redis
53-
# mongo:
54-
# image: mongo:7.0.5
55-
# restart: always
56-
# ports:
57-
# - "27017:27017"
58-
# volumes:
59-
# - mongodb-data:/data/db
53+
mongo:
54+
image: mongo:7.0.5
55+
restart: always
56+
ports:
57+
- "27017:27017"
58+
volumes:
59+
- mongodb-data:/data/db
6060
nginx:
6161
build: ./nginx
6262
volumes:
@@ -69,4 +69,4 @@ services:
6969
volumes:
7070
static_volume:
7171
postgres_data:
72-
# mongodb-data:
72+
mongodb-data:

0 commit comments

Comments
 (0)