This commit is contained in:
azykov@mail.ru 2026-04-12 09:13:24 +03:00
parent c066ace81e
commit 7219e18281
1 changed files with 16 additions and 0 deletions

16
haproxy/compose.yaml Normal file
View File

@ -0,0 +1,16 @@
services:
haproxy:
image: haproxytech/haproxy-alpine:latest
container_name: haproxy
restart: always
ports:
# - 80:80 # 80 is for caddy
- 443:443
# - 8404:8404
volumes:
# - /docker/data/haproxy/etc:/usr/local/etc/haproxy:ro
- /docker/data/haproxy/etc/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
networks:
- default
networks:
default: {}