diff options
Diffstat (limited to 'terminaldweller.com/haproxy/docker-compose.yaml')
-rw-r--r-- | terminaldweller.com/haproxy/docker-compose.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/terminaldweller.com/haproxy/docker-compose.yaml b/terminaldweller.com/haproxy/docker-compose.yaml new file mode 100644 index 0000000..fe861d0 --- /dev/null +++ b/terminaldweller.com/haproxy/docker-compose.yaml @@ -0,0 +1,9 @@ +version: "3.4" +services: + haproxy: + image: haproxy + ports: + - "80:80" + volumes: + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro + |