├── .github └── workflows │ ├── docker_auto.yml │ ├── docker_description.yml │ ├── docker_manual.yml │ └── update.yml ├── 2.4 ├── Dockerfile ├── docker-entrypoint.sh └── haproxy.cfg ├── 2.6 ├── Dockerfile ├── docker-entrypoint.sh └── haproxy.cfg ├── 2.8 ├── Dockerfile ├── docker-entrypoint.sh └── haproxy.cfg ├── 3.0 ├── Dockerfile ├── Dockerfile.api ├── docker-entrypoint.sh ├── fs │ ├── etc │ │ └── s6-overlay │ │ │ ├── s6-rc.d │ │ │ ├── dataplaneapi │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ ├── haproxy │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── haproxy │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── sigusr1 │ │ │ │ ├── type │ │ │ │ └── up │ │ │ └── user │ │ │ │ └── contents.d │ │ │ │ ├── dataplaneapi │ │ │ │ └── haproxy │ │ │ └── scripts │ │ │ └── 00-sigusr1 │ ├── start.sh │ └── usr │ │ └── local │ │ └── etc │ │ └── haproxy │ │ ├── dataplaneapi.yml │ │ └── haproxy.cfg └── haproxy.cfg ├── 3.1 ├── Dockerfile ├── Dockerfile.api ├── docker-entrypoint.sh ├── fs │ ├── etc │ │ └── s6-overlay │ │ │ ├── s6-rc.d │ │ │ ├── dataplaneapi │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ ├── haproxy │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── haproxy │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── sigusr1 │ │ │ │ ├── type │ │ │ │ └── up │ │ │ └── user │ │ │ │ └── contents.d │ │ │ │ ├── dataplaneapi │ │ │ │ └── haproxy │ │ │ └── scripts │ │ │ └── 00-sigusr1 │ ├── start.sh │ └── usr │ │ └── local │ │ └── etc │ │ └── haproxy │ │ ├── dataplaneapi.yml │ │ └── haproxy.cfg └── haproxy.cfg ├── 3.2 ├── Dockerfile ├── Dockerfile.api ├── docker-entrypoint.sh ├── fs │ ├── etc │ │ └── s6-overlay │ │ │ ├── s6-rc.d │ │ │ ├── dataplaneapi │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ ├── haproxy │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── haproxy │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── sigusr1 │ │ │ │ ├── type │ │ │ │ └── up │ │ │ └── user │ │ │ │ └── contents.d │ │ │ │ ├── dataplaneapi │ │ │ │ └── haproxy │ │ │ └── scripts │ │ │ └── 00-sigusr1 │ ├── start.sh │ └── usr │ │ └── local │ │ └── etc │ │ └── haproxy │ │ ├── dataplaneapi.yml │ │ └── haproxy.cfg └── haproxy.cfg ├── 3.3 ├── Dockerfile ├── Dockerfile.api ├── docker-entrypoint.sh ├── fs │ ├── etc │ │ └── s6-overlay │ │ │ ├── s6-rc.d │ │ │ ├── dataplaneapi │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ ├── haproxy │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── haproxy │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── sigusr1 │ │ │ │ ├── type │ │ │ │ └── up │ │ │ └── user │ │ │ │ └── contents.d │ │ │ │ ├── dataplaneapi │ │ │ │ └── haproxy │ │ │ └── scripts │ │ │ └── 00-sigusr1 │ ├── start.sh │ └── usr │ │ └── local │ │ └── etc │ │ └── haproxy │ │ ├── dataplaneapi.yml │ │ └── haproxy.cfg └── haproxy.cfg ├── 3.4 ├── Dockerfile ├── Dockerfile.api ├── docker-entrypoint.sh ├── fs │ ├── etc │ │ └── s6-overlay │ │ │ ├── s6-rc.d │ │ │ ├── dataplaneapi │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ ├── haproxy │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── haproxy │ │ │ │ ├── dependencies.d │ │ │ │ │ ├── base │ │ │ │ │ └── sigusr1 │ │ │ │ ├── run │ │ │ │ └── type │ │ │ ├── sigusr1 │ │ │ │ ├── type │ │ │ │ └── up │ │ │ └── user │ │ │ │ └── contents.d │ │ │ │ ├── dataplaneapi │ │ │ │ └── haproxy │ │ │ └── scripts │ │ │ └── 00-sigusr1 │ ├── start.sh │ └── usr │ │ └── local │ │ └── etc │ │ └── haproxy │ │ ├── dataplaneapi.yml │ │ └── haproxy.cfg └── haproxy.cfg ├── README.md ├── README_short.md └── update.sh /.github/workflows/docker_auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/.github/workflows/docker_auto.yml -------------------------------------------------------------------------------- /.github/workflows/docker_description.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/.github/workflows/docker_description.yml -------------------------------------------------------------------------------- /.github/workflows/docker_manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/.github/workflows/docker_manual.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.4/Dockerfile -------------------------------------------------------------------------------- /2.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.4/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.4/haproxy.cfg -------------------------------------------------------------------------------- /2.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.6/Dockerfile -------------------------------------------------------------------------------- /2.6/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.6/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.6/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.6/haproxy.cfg -------------------------------------------------------------------------------- /2.8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.8/Dockerfile -------------------------------------------------------------------------------- /2.8/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.8/docker-entrypoint.sh -------------------------------------------------------------------------------- /2.8/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/2.8/haproxy.cfg -------------------------------------------------------------------------------- /3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/Dockerfile -------------------------------------------------------------------------------- /3.0/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/Dockerfile.api -------------------------------------------------------------------------------- /3.0/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/etc/s6-overlay/s6-rc.d/haproxy/run -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/haproxy/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/sigusr1/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/sigusr1/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/00-sigusr1 2 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/user/contents.d/dataplaneapi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/s6-rc.d/user/contents.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.0/fs/etc/s6-overlay/scripts/00-sigusr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/etc/s6-overlay/scripts/00-sigusr1 -------------------------------------------------------------------------------- /3.0/fs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/start.sh -------------------------------------------------------------------------------- /3.0/fs/usr/local/etc/haproxy/dataplaneapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/usr/local/etc/haproxy/dataplaneapi.yml -------------------------------------------------------------------------------- /3.0/fs/usr/local/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/fs/usr/local/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /3.0/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.0/haproxy.cfg -------------------------------------------------------------------------------- /3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/Dockerfile -------------------------------------------------------------------------------- /3.1/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/Dockerfile.api -------------------------------------------------------------------------------- /3.1/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/etc/s6-overlay/s6-rc.d/haproxy/run -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/haproxy/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/sigusr1/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/sigusr1/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/00-sigusr1 2 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/user/contents.d/dataplaneapi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/s6-rc.d/user/contents.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.1/fs/etc/s6-overlay/scripts/00-sigusr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/etc/s6-overlay/scripts/00-sigusr1 -------------------------------------------------------------------------------- /3.1/fs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/start.sh -------------------------------------------------------------------------------- /3.1/fs/usr/local/etc/haproxy/dataplaneapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/usr/local/etc/haproxy/dataplaneapi.yml -------------------------------------------------------------------------------- /3.1/fs/usr/local/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/fs/usr/local/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /3.1/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.1/haproxy.cfg -------------------------------------------------------------------------------- /3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/Dockerfile -------------------------------------------------------------------------------- /3.2/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/Dockerfile.api -------------------------------------------------------------------------------- /3.2/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/etc/s6-overlay/s6-rc.d/haproxy/run -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/haproxy/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/sigusr1/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/sigusr1/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/00-sigusr1 2 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/user/contents.d/dataplaneapi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/s6-rc.d/user/contents.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.2/fs/etc/s6-overlay/scripts/00-sigusr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/etc/s6-overlay/scripts/00-sigusr1 -------------------------------------------------------------------------------- /3.2/fs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/start.sh -------------------------------------------------------------------------------- /3.2/fs/usr/local/etc/haproxy/dataplaneapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/usr/local/etc/haproxy/dataplaneapi.yml -------------------------------------------------------------------------------- /3.2/fs/usr/local/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/fs/usr/local/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /3.2/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.2/haproxy.cfg -------------------------------------------------------------------------------- /3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/Dockerfile -------------------------------------------------------------------------------- /3.3/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/Dockerfile.api -------------------------------------------------------------------------------- /3.3/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/etc/s6-overlay/s6-rc.d/haproxy/run -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/haproxy/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/sigusr1/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/sigusr1/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/00-sigusr1 2 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/user/contents.d/dataplaneapi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/s6-rc.d/user/contents.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.3/fs/etc/s6-overlay/scripts/00-sigusr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/etc/s6-overlay/scripts/00-sigusr1 -------------------------------------------------------------------------------- /3.3/fs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/start.sh -------------------------------------------------------------------------------- /3.3/fs/usr/local/etc/haproxy/dataplaneapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/usr/local/etc/haproxy/dataplaneapi.yml -------------------------------------------------------------------------------- /3.3/fs/usr/local/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/fs/usr/local/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /3.3/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.3/haproxy.cfg -------------------------------------------------------------------------------- /3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/Dockerfile -------------------------------------------------------------------------------- /3.4/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/Dockerfile.api -------------------------------------------------------------------------------- /3.4/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/docker-entrypoint.sh -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/run -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/dataplaneapi/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/haproxy/dependencies.d/sigusr1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/haproxy/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/etc/s6-overlay/s6-rc.d/haproxy/run -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/haproxy/type: -------------------------------------------------------------------------------- 1 | longrun 2 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/sigusr1/type: -------------------------------------------------------------------------------- 1 | oneshot 2 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/sigusr1/up: -------------------------------------------------------------------------------- 1 | /etc/s6-overlay/scripts/00-sigusr1 2 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/user/contents.d/dataplaneapi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/s6-rc.d/user/contents.d/haproxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3.4/fs/etc/s6-overlay/scripts/00-sigusr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/etc/s6-overlay/scripts/00-sigusr1 -------------------------------------------------------------------------------- /3.4/fs/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/start.sh -------------------------------------------------------------------------------- /3.4/fs/usr/local/etc/haproxy/dataplaneapi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/usr/local/etc/haproxy/dataplaneapi.yml -------------------------------------------------------------------------------- /3.4/fs/usr/local/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/fs/usr/local/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /3.4/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/3.4/haproxy.cfg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /README_short.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/README_short.md -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxytech/haproxy-docker-ubuntu/HEAD/update.sh --------------------------------------------------------------------------------