This guide will help you set up a standalone Snowflake proxy using Docker to help censored users connect to the Tor network. We have a Docker image to ease the setup of a Snowflake proxy.

1. Install Docker

Инструкции на этом этапе предназначены для систем на базе Debian, но вы можете найти инструкции Docker для других поддерживаемых платформ.

Open a terminal and run these commands:

$ sudo apt install curl sudo
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh ./get-docker.sh

2. Download the docker compose file

Download the docker-compose.yml configuration file. Run the command to download it:

$ wget https://gitlab.torproject.org/tpo/anti-censorship/docker-snowflake-proxy/raw/main/docker-compose.yml

Затем разверните прокси-сервер, выполнив:

docker compose up -d snowflake-proxy

This command starts the Snowflake proxy in detached mode. После этого вы увидите следующее:

Creating snowflake-proxy ... done

ваш прокси запущен и работает!

3. Checking your Docker logs

To access your Snowflake proxy logs, first find the container ID number. Run the command:

$ docker ps

Your Snowflake container ID is on the same line of thetorproject/snowflake-proxy:latest. Replace the container ID below with yours and run the command:

$ docker logs -f 42fb82372340

4. Automatic updates with Watchtower

The docker-compose.yml file contains a watchtower container, configured to automatically check for updates to the snowflake docker container every day, download them and run them. Так что, если вы это используете, ваш прокси-сервер Snowflake будет обновляться автоматически! В противном случае вам придется периодически извлекать последний контейнер и перезапускать его вручную.