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

17
haproxy/docker-entrypoint.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- haproxy "$@"
fi
if [ "$1" = 'haproxy' ]; then
shift # "haproxy"
# if the user wants "haproxy", let's add a couple useful flags
# -W -- "master-worker mode" (similar to the old "haproxy-systemd-wrapper"; allows for reload via "SIGUSR2")
# -db -- disables background mode
set -- haproxy -W -db "$@"
fi
exec "$@"