From 9e330a22f673ae0cac61789753cba8db05921915 Mon Sep 17 00:00:00 2001 From: Alexander Trost Date: Mon, 5 Oct 2015 15:47:37 +0200 Subject: [PATCH] Removed the $DATA_DIR Currently the $DATA_DIR is not in use --- Dockerfile | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9142739..7ecf569 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN chmod 755 /entrypoint.sh && \ echo "deb-src http://ppa.launchpad.net/tabbott/zulip/ubuntu trusty main" >> /etc/apt/sources.list.d/zulip.list && \ apt-get -qq update -q && \ apt-get -qq dist-upgrade -y && \ - mkdir -p "$DATA_DIR" "$ZULIP_DIR" && \ + mkdir -p "$ZULIP_DIR" && \ git clone https://github.com/galexrt/zulip.git "$ZULIP_DIR" && \ # TODO: Change this to the docker build repo including all the needed files cd "$ZULIP_DIR" && \ git checkout tags/"$ZULIP_VERSION" && \ diff --git a/README.md b/README.md index 096e4e6..c449c59 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # docker-zulip Zulip Server as a Docker Image -WARNING! This is currently work in progress. It's not "working" yet. +##### WARNING! This is currently work in progress. It's not fully "working" yet, but I'm working to get it working. + +#### Don't use the master branch (I'm not really testing when commiting to master!!), use a version branch when available!! See https://zulip.org/ for details about the Zulip Server