Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2015-02-07 04:48:18 +0300
committerChris Rebert <github@rebertia.com>2015-02-07 04:48:18 +0300
commitdc8578e90021d132ad5f138bbc5ea109dec2d9f0 (patch)
tree6fbaf321a290f8b3e0795c8092b605d8e18d25f7
parent92ba8954306af3b1ad255e2d09aacd52afeb69a6 (diff)
add --read-only to docker args
-rwxr-xr-xsetup_droplet.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup_droplet.sh b/setup_droplet.sh
index f601284..eca934b 100755
--- a/setup_droplet.sh
+++ b/setup_droplet.sh
@@ -17,7 +17,7 @@ ufw allow www
ufw enable
ufw status verbose
-# setup Docker; written against Docker v1.2.0
+# setup Docker; written against Docker v1.5.0
docker build . 2>&1 | tee docker.build.log
IMAGE_ID="$(tail -n 1 docker.build.log | cut -d ' ' -f 3)"
-docker run -d -p 80:9090 --name rorschach $IMAGE_ID
+docker run --read-only -d -p 80:9090 --name rorschach $IMAGE_ID