From 5ca085026353ca1931886154ec3c770032463f75 Mon Sep 17 00:00:00 2001 From: Iwan Clement Date: Tue, 18 Jun 2019 22:42:26 +0200 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- haproxy/docker-compose.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 haproxy/docker-compose.yaml diff --git a/haproxy/docker-compose.yaml b/haproxy/docker-compose.yaml new file mode 100644 index 0000000..4053395 --- /dev/null +++ b/haproxy/docker-compose.yaml @@ -0,0 +1,10 @@ +version: 2 +services: + haproxy: + container_name: my-haproxy + volumes: + - 'haproxy_config:/usr/local/etc/haproxy:ro' + image: 'haproxy:2.0-alpine' + ports: + - 443:443 + - 80:80 \ No newline at end of file