-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
39 lines (36 loc) · 1.18 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
version: "3"
services:
policy-search:
restart: always
container_name: policy-search
image: 10.4.177.111:5000/policy/policy-search
environment:
NACOS_HOST: 10.4.177.111
NACOS_PORT: 8848
spring.cloud.nacos.discovery.namespace: cfeacfb9-325b-494e-aa2c-a35ced6247d8
spring.cloud.nacos.discovery.config: cfeacfb9-325b-494e-aa2c-a35ced6247d8
# spring.cloud.nacos.ip: ###
ports:
- 8001:8001
policy-gateway:
restart: always
container_name: policy-gateway
image: 10.4.177.111:5000/policy/policy-gateway
environment:
NACOS_HOST: 10.4.177.111
NACOS_PORT: 8848
spring.cloud.nacos.discovery.namespace: cfeacfb9-325b-494e-aa2c-a35ced6247d8
spring.cloud.nacos.discovery.config: cfeacfb9-325b-494e-aa2c-a35ced6247d8
ports:
- 8989:8989
policy-auth:
restart: always
container_name: policy-auth
image: 10.4.177.111:5000/policy/policy-auth
environment:
NACOS_HOST: 10.4.177.111
NACOS_PORT: 8848
spring.cloud.nacos.discovery.namespace: cfeacfb9-325b-494e-aa2c-a35ced6247d8
spring.cloud.nacos.discovery.config: cfeacfb9-325b-494e-aa2c-a35ced6247d8
ports:
- 8002:8002