From 22de94fbedbd648592f6f2b360f0b9e969c9f264 Mon Sep 17 00:00:00 2001 From: Attila Date: Fri, 1 Mar 2019 01:05:52 +0100 Subject: [PATCH] Add missing export to HOST_IP --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b107622..f246364 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Unlike steamcache/generic this service will cache all cdn services (defined in t To initialise a full caching setup with dns and sni proxy you can use the following script as a starting point: ``` -HOST_IP=`hostname -I | cut -d' ' -f1` +export HOST_IP=`hostname -I | cut -d' ' -f1` docker run --restart unless-stopped --name steamcache-dns --detach -p 53:53/udp -e USE_GENERIC_CACHE=true -e LANCACHE_IP=$HOST_IP steamcache/steamcache-dns:latest docker run --restart unless-stopped --name lancache --detach -v /cache/data:/data/cache -v /cache/logs:/data/logs -p 80:80 steamcache/monolithic:latest docker run --restart unless-stopped --name sniproxy --detach -p 443:443 steamcache/sniproxy:latest