Initial
This commit is contained in:
10
compose.yaml
10
compose.yaml
@@ -8,9 +8,9 @@ services:
|
||||
environment:
|
||||
NODE_ENV: development
|
||||
ports:
|
||||
- "50013:3503" # Host port 50013 mapped to container's port 3503
|
||||
- "5000:5000" # Host port 5000 mapped to container's port 5000
|
||||
expose:
|
||||
- 3503
|
||||
- 5000
|
||||
depends_on:
|
||||
- mongo
|
||||
networks:
|
||||
@@ -24,9 +24,9 @@ services:
|
||||
environment:
|
||||
NODE_ENV: development
|
||||
ports:
|
||||
- "50014:1059" # Changed host port to avoid conflict with API server
|
||||
- "8000:8000" # Changed host port to avoid conflict with API server
|
||||
expose:
|
||||
- 1059
|
||||
- 8000
|
||||
depends_on:
|
||||
- mongo
|
||||
networks:
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
image: mongo:latest
|
||||
container_name: mongo-Dwinzocontainer
|
||||
ports:
|
||||
- "3502:27017"
|
||||
- "27017:27017"
|
||||
volumes:
|
||||
- mongo-data:/data/db
|
||||
networks:
|
||||
|
||||
Reference in New Issue
Block a user