feat: building haproxy from scratch with required lua modules

This commit is contained in:
Eugene Prodan
2021-06-07 00:32:47 +03:00
parent 65c93fa871
commit e67aced62e
4 changed files with 125 additions and 2 deletions

View File

@@ -1,11 +1,13 @@
version: "3.9"
services:
haproxy:
image: "haproxy:latest"
build:
context: ./
dockerfile: haproxy/Dockerfile
ports:
- 80:80
volumes:
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
- ./haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg
- ./scripts/:/usr/local/etc/haproxy/scripts/
nginx: