Skip to content

Meg4R0M/docker-alpine-haproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HAProxy Alpine Linux image

Docker Pulls

A micro image providing HAProxy based on Alpine Linux.

Github source

Supported tags

  • 1.6.11, 1.6
  • 1.6.11-lua, 1.6-lua
  • 1.7.3, 1.7
  • 1.7.3-lua, 1.7-lua
  • 1.8.1, 1.8, latest

What is HAProxy?

HAProxy is a free, open source high availability solution, providing load balancing and proxying for TCP and HTTP-based applications by spreading requests across multiple servers. It is written in C and has a reputation for being fast and efficient (in terms of processor and memory usage).

wikipedia.org/wiki/HAProxy

How to use this image

Since no two users of HAProxy are likely to configure it exactly alike, this image does not come with any default configuration.

Please refer to upstream's excellent (and comprehensive) documentation on the subject of configuring HAProxy for your needs.

It is also worth checking out the examples/ directory from upstream.

Note: Many configuration examples propose to put daemon into the global section to run HAProxy as daemon. Do not configure this or the Docker container will exit immediately after launching because the HAProxy process would go into the background.

Create a Dockerfile

FROM meg4r0m/alpine-haproxy:1.8
COPY haproxy.cfg /etc/haproxy

Build and run:

$ docker build -t repo/haproxy .
$ docker run -d repo/haproxy

Directly via bind mount

$ docker run -d -v /path/to/haproxy.cfg:/etc/haproxy/haproxy.cfg:ro meg4r0m/alpine-haproxy:1.8

About

🐳 Haproxy docker image based on Alpine Linux

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors