A minimal Docker image for Tinyproxy, built on Alpine Linux. This image is suitable for lightweight HTTP/HTTPS proxy deployments in containerized environments.
- Based on
alpine:latest
for a small footprint - Installs
tinyproxy
andcurl
- Exposes port
8888
by default - Automated multi-architecture builds (amd64, arm64) via GitHub Actions
- Images published to GitHub Container Registry (
ghcr.io/querateam/docker-tinyproxy:latest
)
docker pull ghcr.io/querateam/docker-tinyproxy:latest
docker run -d -p 8888:8888 ghcr.io/querateam/docker-tinyproxy:latest
You can customize the Tinyproxy configuration by mounting a custom tinyproxy.conf
file:
docker run -d -p 8888:8888 -v /path/to/your/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf ghcr.io/querateam/docker-tinyproxy:latest
You can also restrict proxy access to specific hosts by setting the ALLOWED_HOSTS
environment variable (comma-separated list):
docker run -d -p 8888:8888 -e ALLOWED_HOSTS="example.com,another.com" ghcr.io/querateam/docker-tinyproxy:latest