From f4d51c6080c4f20f1aef0b74d04caf5e369b5240 Mon Sep 17 00:00:00 2001 From: Chris Holman Date: Wed, 30 Nov 2016 10:35:15 +1100 Subject: [PATCH] Add building dnsmasq to quick start --- README.md | 3 +++ buildcontainer.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbaddae..9165017 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,9 @@ cd origin-docker # Start the SNI proxy container (optional, but recommended) docker run --name sniproxy -p 443:443 sniproxy + +# Start the DNS server if you need it +(cd dnsmasq && ./start.sh) ``` ### Credits diff --git a/buildcontainer.sh b/buildcontainer.sh index 632ca94..4f48992 100755 --- a/buildcontainer.sh +++ b/buildcontainer.sh @@ -2,5 +2,5 @@ docker build -t cache . -cd sniproxy -docker build -t sniproxy . +(cd sniproxy && docker build -t sniproxy . ) +(cd dnsmasq && docker build -t dnsmasq . )