mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 23:11:29 -04:00
Add Dockerfile and README for deploying probetest
The easiest way to set up the probe server behind a symmetric NAT is to deploy it as a Docker container and alter the iptables rules for the Docker network subnet that the container runs in.
This commit is contained in:
parent
f368c87109
commit
a4f10d9d6e
3 changed files with 58 additions and 0 deletions
11
probetest/docker-compose.yml
Normal file
11
probetest/docker-compose.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
version: "3.8"
|
||||
|
||||
services:
|
||||
snowflake-probetest:
|
||||
build: .
|
||||
container_name: snowflake-probetest
|
||||
ports:
|
||||
- "8443:8443"
|
||||
volumes:
|
||||
- /home/snowflake-broker/acme-cert-cache:/go/bin/acme-cert-cache
|
||||
entrypoint: [ "probetest" , "-addr", ":8443" , "-acme-hostnames", $HOSTNAMES, "-acme-email", $EMAIL, "-acme-cert-cache", "/go/bin/acme-cert-cache"]
|
Loading…
Add table
Add a link
Reference in a new issue