From a8521dc9887165f949a8be5f62512ad5b201bd6c Mon Sep 17 00:00:00 2001 From: Emilio Aburto L Date: Mon, 24 Apr 2017 08:03:03 -0400 Subject: [PATCH] docs: Update Docker development instructions to include chown. This adds a command to change ownership of /srv/zulip to the zulip user. --- docs/dev-setup-non-vagrant.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/dev-setup-non-vagrant.md b/docs/dev-setup-non-vagrant.md index 5b58344d6a..864b495da6 100644 --- a/docs/dev-setup-non-vagrant.md +++ b/docs/dev-setup-non-vagrant.md @@ -395,7 +395,8 @@ docker build -t user/zulipdev . Commit and tag the provisioned images. The below will install Zulip's dependencies: ``` docker run -itv $(pwd):/srv/zulip -p 9991:9991 user/zulipdev /bin/bash -# /bin/bash /srv/zulip/tools/provision --docker +$ /bin/bash sudo chmod -R zulip:zulip /srv/zulip +$ /bin/bash /srv/zulip/tools/provision --docker docker ps -af ancestor=user/zulipdev docker commit -m "Zulip installed" user/zulipdev:v2 ```