-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
docker-compose.yml
78 lines (74 loc) · 1.51 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
version: "3"
services:
nginx:
image: nginx:alpine
container_name: backend-nginx
restart: unless-stopped
environment:
- VIRTUAL_HOST=localhost
- VIRTUAL_PORT=80
expose:
- 80
# ports:
# - 127.0.0.1:8888:80
logging:
options:
max-size: "10m"
max-file: "3"
networks:
bench-nw:
ipv4_address: 192.168.100.100
rpxy-rp:
image: jqtype/rpxy
container_name: proxy-rpxy
pull_policy: never
build:
context: ../
dockerfile: docker/Dockerfile
restart: unless-stopped
environment:
- LOG_LEVEL=info
- LOG_TO_FILE=false
ports:
- 127.0.0.1:8080:8080
tty: false
volumes:
- ./rpxy.toml:/etc/rpxy.toml:ro
networks:
bench-nw:
nginx-rp:
image: nginx:alpine
container_name: proxy-nginx
ports:
- 127.0.0.1:8090:80
restart: unless-stopped
tty: false
privileged: true
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
- /var/run/docker.sock:/tmp/docker.sock:ro
logging:
options:
max-size: "10m"
max-file: "3"
networks:
bench-nw:
caddy-rp:
image: caddy:2
container_name: proxy-caddy
ports:
- 127.0.0.1:8100:80
restart: unless-stopped
tty: false
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
networks:
bench-nw:
networks:
bench-nw:
name: bench-nw
driver: bridge
ipam:
driver: default
config:
- subnet: 192.168.100.0/24