Added quiet mode to wget

This commit is contained in:
Alexander Trost
2015-09-26 17:09:48 +02:00
parent 5e6b5b6940
commit e6e7dfc524
2 changed files with 3 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ RUN chmod 755 /entrypoint.sh && \
apt-get upgrade -y && \
apt-get install -y wget python-six && \
cd /root && \
wget "https://www.zulip.com/dist/releases/zulip-server-$ZULIP_VERSION.tar.gz" && \
wget -q "https://www.zulip.com/dist/releases/zulip-server-$ZULIP_VERSION.tar.gz" && \
tar xfz "/root/zulip-server-$ZULIP_VERSION.tar.gz" -C /root && \
mv "/root/zulip-server-$ZULIP_VERSION" "$ZULIP_DIR" && \
cd "ZULIP_DIR" && \

View File

@@ -4,3 +4,5 @@ if [ ! -f "$ZULIP_DIR/.database-initialized" ]; then
su zulip -c "$ZULIP_DIR/deployments/current/scripts/setup/initialize-database"
su zulip -c "touch $ZULIP_DIR/.database-initialized"
fi
tail -f /var/log/zulip/*.log