├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── verify-templating.yml ├── .gitignore ├── 2.4 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 2.6 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 2.8 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 3.0 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 3.1 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 3.2 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 3.3 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── 3.4 ├── Dockerfile ├── alpine │ ├── Dockerfile │ └── docker-entrypoint.sh └── docker-entrypoint.sh ├── Dockerfile.template ├── LICENSE ├── README.md ├── apply-templates.sh ├── docker-entrypoint.sh ├── generate-stackbrew-library.sh ├── update.sh ├── versions.json └── versions.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/verify-templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/.github/workflows/verify-templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jq-template.awk 2 | -------------------------------------------------------------------------------- /2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.4/Dockerfile -------------------------------------------------------------------------------- /2.4/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.4/alpine/Dockerfile -------------------------------------------------------------------------------- /2.4/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.4/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.6/Dockerfile -------------------------------------------------------------------------------- /2.6/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.6/alpine/Dockerfile -------------------------------------------------------------------------------- /2.6/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.6/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.6/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.6/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.8/Dockerfile -------------------------------------------------------------------------------- /2.8/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.8/alpine/Dockerfile -------------------------------------------------------------------------------- /2.8/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.8/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.8/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/2.8/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.0/Dockerfile -------------------------------------------------------------------------------- /3.0/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.0/alpine/Dockerfile -------------------------------------------------------------------------------- /3.0/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.0/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.1/Dockerfile -------------------------------------------------------------------------------- /3.1/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.1/alpine/Dockerfile -------------------------------------------------------------------------------- /3.1/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.1/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.2/Dockerfile -------------------------------------------------------------------------------- /3.2/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.2/alpine/Dockerfile -------------------------------------------------------------------------------- /3.2/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.2/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.3/Dockerfile -------------------------------------------------------------------------------- /3.3/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.3/alpine/Dockerfile -------------------------------------------------------------------------------- /3.3/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.3/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.3/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.3/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.4/Dockerfile -------------------------------------------------------------------------------- /3.4/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.4/alpine/Dockerfile -------------------------------------------------------------------------------- /3.4/alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.4/alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/3.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/Dockerfile.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/README.md -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/update.sh -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/versions.json -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/haproxy/HEAD/versions.sh --------------------------------------------------------------------------------