-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (49 loc) · 1.07 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
version: '3.6'
services:
hotel:
build: ./hotel
image: docker.io/library/hotel:latest
restart: always
volumes:
- ./hotel-data:/data
ports:
- 8080:8080
networks:
- external-api
hotel2:
build: ./hotel2
image: docker.io/library/hotel2:latest
restart: always
volumes:
- ./hotel2-data:/data
ports:
- 8081:8081
networks:
- external-api
hms:
build: ./hms
image: docker.io/library/hms:latest
restart: always
ports:
- 8083:8083
networks:
- external-api
client-new:
build: ./client-new
image: docker.io/library/client-new:latest
restart: always
ports:
- 8084:8084
networks:
- external-api
admin:
build: ./admin
image: docker.io/library/admin:latest
restart: always
ports:
- 8085:8085
networks:
- external-api
networks:
external-api:
driver: bridge