Skip to content

Latest commit

Β 

History

History
59 lines (46 loc) Β· 2.06 KB

File metadata and controls

59 lines (46 loc) Β· 2.06 KB

Tor for Docker

Build Version Size Package Pulls

Docker container of the Tor network proxy daemon.

Features ✨

  • Suitable for relay, exit node or hidden service modes with SOCKSv5 proxy enabled.
  • Works well as a single self-contained container or in cooperation with other containers (like nginx) for organizing complex hidden services on the Tor network.
  • Includes Nyx for monitoring and the Lyrebird obfs4proxy

Usage 🐳

Via Docker Compose:
services:
  tor:
    image: dockurr/tor
    container_name: tor
    ports:
      - 9050:9050
      - 9051:9051
    volumes:
      - ./config:/etc/tor
      - ./data:/var/lib/tor
    restart: always
Via Docker CLI:
docker run -it --rm --name tor -p 9050:9050 -p 9051:9051 -v "${PWD:-.}/config:/etc/tor" -v "${PWD:-.}/data:/var/lib/tor" docker.io/dockurr/tor

Stars 🌟

Stars