From 81a560bec8ac74b4dd68d475be77ae5e00d5ecfd Mon Sep 17 00:00:00 2001 From: Evan Hazlett Date: Mon, 6 Oct 2014 10:48:04 -0400 Subject: [PATCH] use custom snipt/proxy image --- .docker/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/start.sh b/.docker/start.sh index 6a1b25e..a7c3b3b 100755 --- a/.docker/start.sh +++ b/.docker/start.sh @@ -40,7 +40,7 @@ for CMP in $COMPONENTS; do if [ "$CMP" = "proxy" -o "$CMP" = "all" ]; then echo "starting proxy" - docker run -d --name snipt-proxy -it -v /var/log/snipt:/logs -v $(pwd)/.docker/nginx.conf:/etc/nginx/nginx.conf -v $(pwd)/static:/app/snipt/static -v /etc/certs:/etc/certs --net container:snipt-net nginx nginx -g 'daemon off;' -c /etc/nginx/nginx.conf > /dev/null + docker run -d --name snipt-proxy -it -v /var/log/snipt:/logs -v $(pwd)/.docker/nginx.conf:/etc/nginx/nginx.conf -v $(pwd)/static:/app/snipt/static -v /etc/certs:/etc/certs --net container:snipt-net snipt/proxy nginx -g 'daemon off;' -c /etc/nginx/nginx.conf > /dev/null fi done