-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathdocker-compose.yml
79 lines (79 loc) · 2.25 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
75
76
77
78
79
version: '3'
services:
haproxy:
image: haproxy:2.4.0
# image: haproxytech/haproxy-debian:2.4.0
ports:
- "8001:443"
# - "8081:5555"
volumes:
- ./configs/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
- ./configs/labiotls.pem:/tmp/labiotls.pem
nginx:
image: nginx:1.18
ports:
- "8002:443"
volumes:
- ./configs/nginx.conf:/etc/nginx/conf.d/vhost.conf
- ./configs/labiotls.pem:/tmp/labiotls.pem
nuster:
image: nuster/nuster:latest
ports:
- "8003:443"
volumes:
- ./configs/nuster.cfg:/etc/nuster/nuster.cfg
- ./configs/labiotls.pem:/tmp/labiotls.pem
caddy:
image: caddy:2.4.0
ports:
- "8004:8443"
- "8084:2019"
volumes:
- ./configs/Caddyfile:/etc/caddy/Caddyfile
traefik1:
image: traefik:1.7.30
command: --api --file /etc/traefik/traefik.toml
ports:
- "8005:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./configs/traefik1.toml:/etc/traefik/traefik.toml
- ./configs/labiotls.pem:/tmp/labiotls.pem
traefik2:
image: traefik:2.4.8
command: --configFile=/etc/traefik/traefik.yml
ports:
- "8006:443"
- "8086:80"
- "8600:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./configs/traefik2.toml:/etc/traefik/traefik.toml
- ./configs/services.toml:/etc/traefik/services.toml
- ./configs/labiotls.pem:/tmp/labiotls.pem
envoy:
image: envoyproxy/envoy:v1.18.3
ports:
- "8007:443"
- "8700:9090"
volumes:
- ./configs/envoy.yaml:/etc/envoy/envoy.yaml
- ./configs/labiotls.pem:/tmp/labiotls.pem
apachephp:
image: php:apache
ports:
- "9990:80"
volumes:
- ./code/:/var/www/html/
guni:
build: gunicorn/.
ports:
- "9991:8000"
raw:
build: raw/.
ports:
- "9999:9999"
networks:
default:
external:
name: labs_network