A lightweight container that runs Tor with Privoxy, providing an HTTP/HTTPS forward proxy.
163
A lightweight container that runs Tor, wraps it in Privoxy, and exposes a forward-proxy on port 55455. This proxy service works well with HTTPS, offering good data communication performance.
It's possible to browse the web, watch videos, and download files without lag. Keep in mind that if your Internet connection is slow, your experience will be poor.
When the container starts, the Tor circuit participation process is established. From start to connection establishment, it can take a few minutes. Please be patient during this time.
This container sets up a secure proxy that:
docker-compose.yml file with the following content:version: '3.8'
services:
tor-proxy:
image: docker.io/eduardoenemark/tor-proxy:1.1
container_name: tor-proxy
restart: always
stop_grace_period: 5s
ports:
# Expose the Tor proxy port
- "0.0.0.0:55455:55455/tcp"
# Optional: Expose the default Tor SOCKS port
- "0.0.0.0:9050:9050/tcp"
volumes:
- "~/.cache/log/tor-proxy:/var/log"
- "~/.cache/log/tor-proxy/privoxy:/var/log/privoxy"
- "~/.cache/log/tor-proxy/tor:/var/log/tor"
deploy:
resources:
limits:
cpus: 1
memory: 512m
docker-compose up -d
podman run \
--name tor-proxy \
--restart always \
--stop-timeout 5 \
--publish 0.0.0.0:55455:55455/tcp \
--publish 0.0.0.0:9050:9050/tcp \
--volume ~/.cache/log/tor-proxy:/var/log \
--volume ~/.cache/log/tor-proxy/privoxy:/var/log/privoxy \
--volume ~/.cache/log/tor-proxy/tor:/var/log/tor \
--cpus 1 \
--memory 512m \
docker.io/eduardoenemark/tor-proxy:1.1
The container uses these volumes for persistent logging:
/var/log: Main log directory./var/log/tor: Tor service logs./var/log/privoxy: Privoxy service logs.Configure your applications to use the proxy:
localhost or 127.0.0.155455If you need direct Tor access:
localhost or 127.0.0.19050All logs are stored in ~/.cache/log/tor-proxy/ directory on your host machine. This includes:
Always review the security implications of using any proxy service. Learn more about the Tor network before using this service.
If you encounter issues:
docker logs tor-proxy or podman logs tor-proxy.This project is licensed under GPL-3.0.
Content type
Image
Digest
sha256:80e4bab40…
Size
38.9 MB
Last updated
8 months ago
docker pull eduardoenemark/tor-proxy:1.1