-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (47 loc) · 1004 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: "3.8"
services:
auth-microservice:
build:
context: ./
dockerfile: packages/auth-microservice/Dockerfile
ports:
- "${AUTH_SERVICE_PORT}:3000"
env_file:
- .env
depends_on:
- mongo
game-api-microservice:
build:
context: ./
dockerfile: packages/game-api-microservice/Dockerfile
ports:
- "${GAME_API_SERVICE_PORT}:3000"
env_file:
- .env
depends_on:
- mongo
game-engine:
build:
context: ./
dockerfile: packages/game-engine/Dockerfile
env_file:
- .env
depends_on:
- mongo
frontend:
build:
context: ./
dockerfile: packages/frontend/Dockerfile
ports:
- "${FRONTEND_PORT}:80"
mongo:
image: mongo:latest
ports:
- "${MONGO_PORT}:27017"
command: ["--quiet"]
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD}
volumes:
mongo_data:
driver: local