-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
90 lines (85 loc) · 1.83 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
version: '3'
services:
mongo:
image: mongo
restart: always
volumes:
- mongodata:/data/db
ports:
- '27017:27017'
environment:
MONGO_INITDB_DATABASE: test
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: secret
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: secret
ME_CONFIG_MONGODB_URL: mongodb://root:secret@mongo:27017/
depends_on:
- mongo
gateway:
build:
context: .
dockerfile: ./apps/gateway/Dockerfile
target: development
command: pnpm start:dev gateway
ports:
- 3000:3000
environment:
- PORT=3000
- HOST=0.0.0.0
- AUTH_HOST=auth
- AUTH_PORT=3001
- FLASHCARD_HOST=flashcard
- FLASHCARD_PORT=3002
volumes:
- .:/dev/gateway
depends_on:
- auth
- flashcard
auth:
build:
context: .
dockerfile: ./apps/auth/Dockerfile
target: development
command: pnpm start:dev auth
ports:
- 3001:3001
environment:
- PORT=3001
- HOST=0.0.0.0
- MONGO_URI=mongodb://root:secret@mongo:27017
- MONGO_DB_NAME=auth
- JWT_SECRET=secret
- JWT_EXPIRES_IN=10d
volumes:
- .:/dev/auth
depends_on:
- mongo
flashcard:
build:
context: .
dockerfile: ./apps/flashcard/Dockerfile
target: development
command: pnpm start:dev flashcard
ports:
- 3002:3002
environment:
- PORT=3002
- HOST=0.0.0.0
- MONGO_URI=mongodb://root:secret@mongo:27017
- MONGO_DB_NAME=flashcard
- AUTH_HOST=auth
- AUTH_PORT=3001
volumes:
- .:/dev/flashcard
depends_on:
- mongo
- auth
volumes:
mongodata: