-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (44 loc) · 1.06 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
version: "3.1"
services:
config:
image: cloud-config-service-demo
build:
context: .
dockerfile: ./spring-config-service/src/main/resources/DockerfileConfig
container_name: cloud_config_container_demo
restart: always
ports:
- 7788:7788
extra_hosts:
- 'localhost:192.168.100.40'
discovery:
image: cloud-discovery-service-demo
build:
context: .
dockerfile: ./spring-discovery-service/src/main/resources/DockerfileDiscovery
container_name: cloud_discovery_container_demo
links:
- config
restart: always
ports:
- 7766:7766
depends_on:
- config
extra_hosts:
- 'localhost:192.168.100.40'
gateway:
image: cloud-gateway-service-demo
build:
context: .
dockerfile: ./spring-gateway-service/src/main/resources/DockerfileGateway
container_name: cloud_gateway_container_demo
links:
- config
- discovery
restart: always
ports:
- 7733:7733
depends_on:
- discovery
extra_hosts:
- 'localhost:192.168.100.40'