mirror of
https://gitgud.io/fatchan/haproxy-protection.git
synced 2025-05-09 02:05:37 +00:00
17 lines
310 B
YAML
17 lines
310 B
YAML
version: "3.9"
|
|
services:
|
|
haproxy:
|
|
image: "haproxy:latest"
|
|
ports:
|
|
- 80:80
|
|
volumes:
|
|
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
|
|
- ./scripts/:/usr/local/etc/haproxy/scripts/
|
|
|
|
nginx:
|
|
image: "nginx:latest"
|
|
|
|
redis:
|
|
image: "redis:latest"
|
|
ports:
|
|
- 6379:6379 |