This repository contains Dockerfile of Haproxy for Docker's automated build published to the public Docker Hub Registry.
Install Docker.
Download automated build from public Docker Hub Registry: docker pull dockerfile/haproxy
(alternatively, you can build an image from Dockerfile: docker build -t="dockerfile/haproxy" github.com/dockerfile/haproxy
)
docker run -d -p 80:80 dockerfile/haproxy
docker run -d -p 80:80 -v <override-dir>:/haproxy-override dockerfile/haproxy
where <override-dir>
is an absolute path of a directory that could contain:
haproxy.cfg
: custom config file (replace /dev/log
with 127.0.0.1
, and comment out daemon
)errors/
: custom error responsesAfter few seconds, open http://<host>
to see the haproxy stats page.