-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdocker-compose.yaml
74 lines (67 loc) · 1.47 KB
/
docker-compose.yaml
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
version: '3.8'
services:
redis:
container_name: 'realworld-redis'
image: redis:alpine
ports:
- 6379:6379
volumes:
- ./docker/redis:/var/lib/redis
restart: unless-stopped
mongo:
container_name: 'realworld-mongo'
image: mongo
ports:
- 27017:27017
volumes:
- ./docker/mongo:/data/db
restart: unless-stopped
feature-user:
container_name: 'feature-user'
image: sefininio/realworld-app-feature-user:1.0.0
restart: unless-stopped
ports:
- 3334:3334
depends_on:
- mongo
- redis
feature-tag:
container_name: 'feature-tag'
image: sefininio/realworld-app-feature-tag:1.0.0
restart: unless-stopped
ports:
- 3335:3335
depends_on:
- mongo
- redis
feature-profile:
container_name: 'feature-profile'
image: sefininio/realworld-app-feature-profile:1.0.0
restart: unless-stopped
ports:
- 3336:3336
depends_on:
- mongo
- redis
feature-article:
container_name: 'feature-article'
image: sefininio/realworld-app-feature-article:1.0.0
restart: unless-stopped
ports:
- 3337:3337
depends_on:
- mongo
- redis
gql-gateway:
container_name: 'gql-gateway'
image: sefininio/realworld-app-gql-gateway:1.0.0
restart: unless-stopped
ports:
- 3330:3330
depends_on:
- mongo
- redis
- feature-user
- feature-tag
- feature-profile
- feature-article