-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (73 loc) · 1.41 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
---
version: '3'
services:
nginx:
image: nginx:latest
networks:
- k8stty
ports:
- "8080:8080"
env_file:
- ./.env
volumes:
- ./configs/default.conf:/etc/nginx/conf.d/default.conf
terminal-svc:
image: localhost:5001/terminal:latest
networks:
- k8stty
ports:
- "9000:9000"
env_file:
- ./.env
websocket-svc:
image: localhost:5001/websocket:latest
networks:
- k8stty
ports:
- "9001:9001"
env_file:
- ./.env
volumes:
- ~/.kube/config:/home/server/.kube/config
namespace-svc:
image: localhost:5001/namespace:latest
networks:
- k8stty
ports:
- "8081:8081"
env_file:
- ./.env
volumes:
- ~/.kube/config:/home/server/.kube/config
networkpolicy-svc:
image: localhost:5001/networkpolicy:latest
networks:
- k8stty
ports:
- "8082:8082"
env_file:
- ./.env
volumes:
- ~/.kube/config:/home/server/.kube/config
pod-svc:
image: localhost:5001/pod:latest
networks:
- k8stty
ports:
- "8083:8083"
env_file:
- ./.env
volumes:
- ~/.kube/config:/home/server/.kube/config
service-svc:
image: localhost:5001/service:latest
networks:
- k8stty
ports:
- "8084:8084"
env_file:
- ./.env
volumes:
- ~/.kube/config:/home/server/.kube/config
networks:
k8stty: