From 7219e18281614e1bca7377b28cef74e7e850c8c6 Mon Sep 17 00:00:00 2001 From: "azykov@mail.ru" Date: Sun, 12 Apr 2026 09:13:24 +0300 Subject: [PATCH] haproxy --- haproxy/compose.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 haproxy/compose.yaml diff --git a/haproxy/compose.yaml b/haproxy/compose.yaml new file mode 100644 index 0000000..e8192e6 --- /dev/null +++ b/haproxy/compose.yaml @@ -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: {} \ No newline at end of file