Legacy Docker image for Pound, an HTTP/HTTPS reverse proxy and load balancer.
docker run --rm -it \
-p 80:80 \
dockette/pound:latestThe image starts Pound in the foreground with /etc/pound/config.cfg.
The bundled configuration listens on port 80 and forwards requests with host headers matching *.local.dev to backend host app on port 80.
To use your own configuration:
docker run --rm -it \
-p 80:80 \
-v "$(pwd)/pound.cfg:/etc/pound/config.cfg:ro" \
dockette/pound:latestThis image is intentionally kept close to the original legacy setup. It uses the historical dockette/debian:jessie base image and Debian Jessie pound package, so changes should stay focused on keeping the existing image buildable and testable.
Build a local image before running tests or starting the container:
make build
make test
make runSee how to contribute to this package. Consider to support f3l1x. Thank you for using this package.