-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
116 lines (103 loc) · 2.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# 使用说明 V2.1.0
# 1. 使用docker-compose 宿主机不需要配置host来发现
# 2. 无需修改源码,根目录 docker-compose up 即可
# 3. 静静等待服务启动
version: '2'
services:
pigx-mysql:
build:
context: ./
dockerfile: ./db/Dockerfile
environment:
MYSQL_ROOT_PASSWORD: root
restart: always
container_name: pigx-mysql
image: pigx-mysql
ports:
- 3306:3306
pigx-zookeeper:
image: zookeeper:3.4.13
restart: always
pigx-redis:
image: redis:4.0.10
restart: always
container_name: pigx-redis
pigx-eureka:
build:
context: ./
dockerfile: ./pigx-eureka/Dockerfile
restart: always
container_name: pigx-eureka
image: pigx-eureka
ports:
- 8761:8761
pigx-config:
build:
context: ./
dockerfile: ./pigx-config/Dockerfile
restart: always
container_name: pigx-config
image: pigx-config
pigx-gateway:
build:
context: ./
dockerfile: ./pigx-gateway/Dockerfile
restart: always
container_name: pigx-gateway
image: pigx-gateway
ports:
- 9999:9999
pigx-auth:
build:
context: ./
dockerfile: ./pigx-auth/Dockerfile
restart: always
container_name: pigx-auth
image: pigx-auth
pigx-upms:
build:
context: ./
dockerfile: ./pigx-upms/pigx-upms-biz/Dockerfile
restart: always
container_name: pigx-upms
image: pigx-upms
pigx-monitor:
build:
context: ./
dockerfile: ./pigx-visual/pigx-monitor/Dockerfile
restart: always
image: pigx-monitor
container_name: pigx-monitor
ports:
- 5001:5001
pigx-daemon:
build:
context: ./
dockerfile: ./pigx-visual/pigx-daemon/Dockerfile
restart: always
image: pigx-daemon
container_name: pigx-daemon
pigx-codegen:
build:
context: ./
dockerfile: ./pigx-visual/pigx-codegen/Dockerfile
restart: always
image: pigx-codegen
container_name: pigx-codegen
pigx-activiti:
build:
context: ./
dockerfile: ./pigx-visual/pigx-activiti/Dockerfile
restart: always
image: pigx-activiti
container_name: pigx-activiti
pigx-tx-manager:
build:
context: ./
dockerfile: ./pigx-visual/pigx-tx-manager/Dockerfile
restart: always
image: pigx-tx-manager
container_name: pigx-tx-manager
ports:
- 5004:5004
- 9998:9998