This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
docker_systems/archive/haproxy/docker-compose.yml

12 lines
190 B
YAML
Raw Normal View History

2020-04-13 16:20:22 +02:00
version: "3.3"
services:
gateway:
2021-11-12 16:48:11 +01:00
image: haproxy:2.3
2020-04-13 16:20:22 +02:00
volumes:
- ./config:/usr/local/etc/haproxy:ro
ports:
- 80:80
- 443:443
network_mode: "host"
2020-04-19 21:32:42 +02:00
restart: unless-stopped