Skip to content

Instantly share code, notes, and snippets.

@VibroAxe
Created February 7, 2019 17:19
Show Gist options
  • Save VibroAxe/f8229089f356be38f5de275f8849a0f2 to your computer and use it in GitHub Desktop.
Save VibroAxe/f8229089f356be38f5de275f8849a0f2 to your computer and use it in GitHub Desktop.
Simple Lancache Get Go
#!/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