├── .github └── workflows │ ├── build_image.yml │ └── release_image.yml ├── .gitignore ├── CHANGELOG ├── Dockerfile ├── README.md ├── Tests └── docker-compose.yml └── container-files ├── bootstrap.sh └── etc └── haproxy └── haproxy.cfg /.github/workflows/build_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/.github/workflows/build_image.yml -------------------------------------------------------------------------------- /.github/workflows/release_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/.github/workflows/release_image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.jenkins 2 | /.vscode 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/README.md -------------------------------------------------------------------------------- /Tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/Tests/docker-compose.yml -------------------------------------------------------------------------------- /container-files/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/container-files/bootstrap.sh -------------------------------------------------------------------------------- /container-files/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/million12/docker-haproxy/HEAD/container-files/etc/haproxy/haproxy.cfg --------------------------------------------------------------------------------