If you simply take the official HAProxy docker image, you’ll quickly see that your logs will not show. That’s because by default, HAProxy won’t log to stdout - you need to have a facility (rsyslog) that will take those logs and ship it to somewhere. A Dockerfile with RSYSLOG for HAProxy logging Although adding rsyslog is straightforward with the alpine-based image, we can go further with linking the generated haproxy.log from rsyslog to /dev/stdout such that whenever rsyslog writes HAPr...