| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A minimal Docker image for Tinyproxy, built on Alpine Linux. This image is suitable for lightweight HTTP/HTTPS proxy deployments in containerized environments.
docker pull ghcr.io/querateam/docker-tinyproxy:latestdocker run -d -p 8888:8888 ghcr.io/querateam/docker-tinyproxy:latestYou 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:latestYou 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:latestYou can use upstream proxy for requests by setting the UPSTREAM_PROXY environment variable:
docker run -d -p 8888:8888 -e UPSTREAM_PROXY="http my.proxy:port" ghcr.io/querateam/docker-tinyproxy:latestFor enhanced security, you can run the Tinyproxy container as a non-root user. Use the --user flag with docker run to specify a non-root UID and GID:
docker run -d -p 8888:8888 --user 1234:1234 ghcr.io/querateam/docker-tinyproxy:latest| Back | FazBrowse Home | New Git URL |