An image for https://github.com/Mygod/slipstream-rust
997
Example usage using docker compose on server:
x-defaults: &defaults
restart: unless-stopped
network_mode: host
ulimits:
nofile:
soft: 51200
hard: 51200
services:
slipstream:
<<: *defaults
image: glacial746/slipstream-rust
command:
[
"--dns-listen-port=53",
"--target-address=127.0.0.1:8888", # points to tinyproxy
"--domain=a.b", # adjust to a domain that current server is authoritative resolver for
"--cert=/opt/certs/cert.pem", # generated in docker image, valid for 10 years
"--key=/opt/certs/key.pem",
]
tinyproxy:
<<: *defaults
image: vimagick/tinyproxy
Example client side command:
./slipstream-client -r SERVER_IP -d a.b
Then 127.0.0.1:5201 will be available as http proxy.
Content type
Image
Digest
sha256:e42788c36…
Size
33.2 MB
Last updated
8 months ago
docker pull glacial746/slipstream-rust