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