-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
59 lines (58 loc) · 1.14 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
version: "3.3"
services:
discovery:
image: registry.cn-shenzhen.aliyuncs.com/nothing/nothing-discovery:1.0
ports:
- 8761:80
networks:
- springcloud
deploy:
mode: replicated
replicas: 1
logging:
options:
max-size: 100m
max-file: 3
api-gateway:
image: registry.cn-shenzhen.aliyuncs.com/nothing/nothing-gateway:1.0
ports:
- 8080:80
networks:
- springcloud
deploy:
mode: replicated
replicas: 1
logging:
options:
max-size: 100m
max-file: 3
ucenter:
image: registry.cn-shenzhen.aliyuncs.com/nothing/nothing-ucenter:1.0
networks:
- springcloud
deploy:
mode: replicated
replicas: 1
logging:
options:
max-size: 100m
max-file: 3
backend:
image: registry.cn-shenzhen.aliyuncs.com/nothing/nothing-backend:1.0
networks:
- springcloud
deploy:
mode: replicated
replicas: 1
logging:
options:
max-size: 100m
max-file: 3
#volumes:
# db-data:
networks:
springcloud:
ipam:
config:
-
subnet: 192.168.67.0/24