Skip to content

Latest commit

 

History

History
34 lines (16 loc) · 1.2 KB

README.md

File metadata and controls

34 lines (16 loc) · 1.2 KB

Haproxy Dockerfile

This repository contains Dockerfile of Haproxy for Docker's automated build published to the public Docker Hub Registry.

Base Docker Image

Installation

  1. Install Docker.

  2. 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)

Usage

docker run -d -p 80:80 dockerfile/haproxy

Customizing 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 responses

After few seconds, open http://<host> to see the haproxy stats page.