forked from n1klasD/Bob2.0_Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (44 loc) · 902 Bytes
/
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
version: "3.3"
services:
controller:
image: 1646552/controller:latest
container_name: "controller"
ports:
- "80:8000"
networks:
- internal
restart: unless-stopped
welcome:
image: 1646552/welcome:latest
container_name: "welcome"
ports:
- "8001:8001"
networks:
- internal
restart: unless-stopped
entertainment:
image: 1646552/entertainment:latest
container_name: "entertainment"
ports:
- "8002:8002"
networks:
- internal
restart: unless-stopped
finances:
image: 1646552/finances:latest
container_name: "finances"
ports:
- "8003:8003"
networks:
- internal
restart: unless-stopped
journey:
image: 1646552/journey:latest
container_name: "journey"
ports:
- "8004:8004"
networks:
- internal
restart: unless-stopped
networks:
internal: