Sign inSign up

zydou/arti

By zydou

Updated 8 months ago

An implementation of Tor, in Rust.

Image
1

10K+

zydou/arti repository overview

Arti

Arti is a Rust implementation of the Tor client.

Container Registry

Docker CLI

docker run -d -restart=always \
    --name arti \
    -p 9150:9150 \
    -p 9150:9150/udp \  # remove this line if you don't need udp proxy
    -p 5353:5353/udp \  # remove this line if you don't need dns proxy service
    zydou/arti:latest

Docker Compose

version: "3.9"
services:
  service.arti:
    image: zydou/arti:latest
    container_name: arti
    ports:
      - 9150:9150
      - 9150:9150/udp  # comment this line if you don't need udp proxy
      - 5353:5353/udp  # comment this line if you don't need udp proxy
    restart: always

This will pull the zydou/arti image tagged with latest from Docker Hub if it is not already present on the local host. It then starts a container running a arti service and exposes the container's internal port 9150 to port 9150 of the host machine for socks5 proxy, and 5353 port for DNS query proxy.

Check out all tags if you need another version.

Source code

GitHub (Also contains other tools to bypass the GFW)

LICENSE

MIT

Tag summary

Content type

Image

Digest

sha256:70566c447

Size

15.9 MB

Last updated

8 months ago

docker pull zydou/arti