Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ## Steam
  2.  
  3. docker run \
  4. --restart unless-stopped -d \
  5. --name steam-cache \
  6. -v /home/USERNAME/cache/steam/data:/data/cache \
  7. -v /home/USERNAME/cache/steam/logs:/data/logs \
  8. -p 192.168.1.50:80:80 \
  9. steamcache/generic:latest
  10.  
  11. ## Riot
  12.  
  13. docker run \
  14. --restart unless-stopped -d \
  15. --name riot-cache \
  16. -v /home/USERNAME/cache/riot/data:/data/cache \
  17. -v /home/USERNAME/cache/riot/logs:/data/logs \
  18. -p 192.168.1.53:80:80 \
  19. steamcache/generic:latest
  20.  
  21. ## Windows
  22.  
  23. docker run \
  24. --restart unless-stopped -d \
  25. --name windows-cache \
  26. -v /home/USERNAME/cache/windows/data:/data/cache \
  27. -v /home/USERNAME/cache/windows/logs:/data/logs \
  28. -p 192.168.1.55:80:80 \
  29. steamcache/generic:latest
  30.  
  31. ## SteamCache DNS
  32.  
  33. docker run \
  34. --restart unless-stopped -d \
  35. --name steamcache-dns \
  36. -p 192.168.1.50:53:53/udp \
  37. -e UPSTREAM_DNS=1.1.1.1 \
  38. -e STEAMCACHE_IP=192.168.1.50 \
  39. -e ORIGINCACHE_IP=192.168.1.51 \
  40. -e BLIZZARDCACHE_IP=192.168.1.52 \
  41. -e RIOTCACHE_IP=192.168.1.53 \
  42. -e FRONTIERCACHE_IP=192.168.1.54 \
  43. -e WINDOWSCACHE_IP=192.168.1.55 \
  44. steamcache/steamcache-dns:latest
  45.  
  46.  
  47. ## sniproxy
  48.  
  49. docker run \
  50. --restart unless-stopped -d \
  51. --name sniproxy \
  52. -p 443:443 \
  53. steamcache/sniproxy:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement