Commit 04e5624d by tdgiang

Add mongo service to docker-compose.yml for admin transaction storage

parent 3470b8d9
......@@ -12,3 +12,4 @@ app/tests/coverage/
*.sublime-project
dist/
.worktrees/
scratch/
......@@ -14,6 +14,7 @@ services:
- "7003:3003"
depends_on:
- redis
- mongo
volumes:
# Named volume, not a host bind-mount: a bind-mounted host directory
# keeps the host's ownership (usually root), which the container's
......@@ -27,6 +28,13 @@ services:
volumes:
- redis-data:/data
mongo:
image: mongo:7
restart: unless-stopped
volumes:
- mongo-data:/data/db
volumes:
redis-data:
app-log:
mongo-data:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment