-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
docker-compose.yaml
51 lines (51 loc) · 1.47 KB
/
docker-compose.yaml
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
version: "3"
services:
kuboard:
image: eipwork/kuboard:latest
ports:
- "8083:80"
environment:
KUBERNETES_SERVICE_HOST: 127.0.0.1
KUBERNETES_SERVICE_PORT_HTTPS: 6443
volumes:
# - /Users/shaohuanqing/Kuboard/kuboard-workspace/nginx-lua/docker/nginx.80.conf:/etc/nginx/conf.d/nginx.80.conf
- /Users/shaohuanqing/Kuboard/kuboard-workspace/kuboard-press/docs:/usr/share/nginx/html
# - /Users/shaohuanqing/Kuboard/kuboard-workspace/nginx-lua/docker/nginx-jwt.lua:/usr/local/openresty/nginx/jwt-lua/resty/nginx-jwt.lua
networks:
- webnet
# web:
# # replace username/repo:tag with your name and image details
# image: eipwork/kuboard-press:latest
# deploy:
# replicas: 1
# resources:
# limits:
# cpus: "0.1"
# memory: 500M
# restart_policy:
# condition: on-failure
# ports:
# - "8081:80"
# volumes:
# - ./docs:/usr/share/nginx/html
# networks:
# - webnet
# kubetrain:
# # replace username/repo:tag with your name and image details
# image: eipwork/kuboard-press:latest
# deploy:
# replicas: 1
# resources:
# limits:
# cpus: "0.1"
# memory: 500M
# restart_policy:
# condition: on-failure
# ports:
# - "8082:80"
# volumes:
# - /Users/shaohuanqing/Kuboard/kuboard-workspace/kubetrain/root:/usr/share/nginx/html
# networks:
# - webnet
networks:
webnet: