dockerfile / haproxy

Haproxy Dockerfile for trusted automated Docker builds.

Home Page:http://dockerfile.github.io/#/haproxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Haproxy Dockerfile for trusted automated Docker builds.

http://dockerfile.github.io/#/haproxy

License:MIT License


Languages

Language:Shell 100.0%