From 6f000b51a4644c3c3571b94a51e0d51d835e720d Mon Sep 17 00:00:00 2001 From: Thomas Rohlajz Date: Tue, 21 Mar 2017 15:57:07 +0100 Subject: [PATCH] Simplify the instruction Everything is done by one command. --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 00425c3..d7bdd48 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,9 @@ A Kubernetes pod file is in the `kubernetes/` folder. The command to run it woul The main reason for this to happen is that you are missing a config file named `uwsgi.ini`. The get this file run: ``` -host$ docker run -it quay.io/galexrt/zulip:1.5.1 bash -// In the container shell run -container# cat /etc/zulip/uwsgi.ini -// Copy the output of this command into your data volume -// The location to copy the file uwsgi.ini to is in the data volume on the host is: -// `YOUR_ZULIP_DATA_PATH/settings/etc-zulip` +// This command copy the output of file uwsgi.ini into your data volume on the host. +// Replace `YOUR_ZULIP_DATA_PATH` with your path. +host$ docker run --rm quay.io/galexrt/zulip:1.5.1 cat /etc/zulip/uwsgi.ini > YOUR_ZULIP_DATA_PATH/settings/etc-zulip/ ``` ## Community