Short Description
The Image For Creating L7 Load Balancer Container.
Full Description
Docker Image for HAProxy
This repository contains Dockerfile of HAProxy for Docker's automated build published to the public Docker Hub Registry.
Base Docker Image
HAProxy Version
- 1.6.4
Installation
Install Docker.
Download automated build from public Docker Hub Registry:
docker pull repositoryjp/haproxy
Usage
docker run -i -t -d -v (the directory path for haproxy.cfg):/etc/haproxy/ repositoryjp/haproxy
*) You need to add some port options (-p) depending on your haproxy configurations.
# Example: run haproxy container as load balancer for http and https.
docker run -i -t -d -v /home/centos/haproxy/:/etc/haproxy/ -p 80:80 -p 443:443 repositoryjp/haproxy
License
See the file LICENSE.
The Author
This Dockerfile was designed and developed by Shinya Kinoshita (From REPOSITORY) in 2016.