A lightweight Docker image for Tinyproxy, a fast and small HTTP/HTTPS proxy server.
91
A lightweight Docker image for Tinyproxy, a fast and small HTTP/HTTPS proxy server. Built on Ubuntu 22.04, this image is ideal for development, testing, or lightweight production proxy needs.
docker run -d --name tinyproxy \
-p 8888:8888 \
djzhu/tinyproxy
version: '3'
services:
tinyproxy:
image: djzhu/tinyproxy
ports:
- "8888:8888"
Start the service:
docker-compose up -d
docker run -d --name tinyproxy \
-p 8888:8888 \
-v /path/to/your/tinyproxy.conf:/etc/tinyproxy/tinyproxy.conf \
djzhu/tinyproxy
The container runs tinyproxy -d (daemon mode in foreground for container management)
For advanced configuration, see the Tinyproxy documentation
Content type
Image
Digest
sha256:305a4f8df…
Size
28.6 MB
Last updated
over 1 year ago
docker pull djzhu/tinyproxy:1.10.0-ubuntu-22.04