Created
February 7, 2019 17:19
-
-
Save VibroAxe/f8229089f356be38f5de275f8849a0f2 to your computer and use it in GitHub Desktop.
Simple Lancache Get Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
HOST_IP=`hostname -I` | |
docker run --restart unless-stopped --name steamcache-dns -p $HOST_IP:53:53/udp -e USE_GENERIC_CACHE=true -e LANCACHE_IP=$HOST_IP steamcache/steamcache-dns:latest | |
docker run --restart unless-stopped --name cache-mono -v /cache/data:/data/cache -v /cache/logs:/data/logs -p $HOST_IP:80:80 steamcache/monolithic:latest | |
docker run --name sniproxy -p 443:443 steamcache/sniproxy:latest | |
echo Please configure your dhcp server to serve dns as $HOST_IP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment