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