forked from zulip/docker-zulip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Getting ready to release v1.3.7-2 of the image
- Loading branch information
Showing
5 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
FROM quay.io/sameersbn/ubuntu:latest | ||
MAINTAINER Alexander Trost <[email protected]> | ||
|
||
ENV ZULIP_VERSION="master" DATA_DIR="/data" | ||
ENV ZULIP_VERSION="1.3.7" DATA_DIR="/data" | ||
|
||
ADD entrypoint.sh /entrypoint.sh | ||
ADD puppet/zulip/ /root/puppet-zulip | ||
|
||
RUN wget -q -O /root/zulip-ppa.asc https://zulip.com/dist/keys/zulip-ppa.asc && \ | ||
apt-key add /root/zulip-ppa.asc && \ | ||
RUN wget -qO - https://zulip.com/dist/keys/zulip-ppa.asc | \ | ||
apt-key add - && \ | ||
echo "deb http://ppa.launchpad.net/tabbott/zulip/ubuntu trusty main" > /etc/apt/sources.list.d/zulip.list && \ | ||
echo "deb-src http://ppa.launchpad.net/tabbott/zulip/ubuntu trusty main" >> /etc/apt/sources.list.d/zulip.list && \ | ||
apt-get -qq update && \ | ||
apt-get -q dist-upgrade -y && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y puppet git python-dev python-six python-pbs && \ | ||
mkdir -p "/root/zulip" "/etc/zulip" "$DATA_DIR" && \ | ||
echo "[machine]\npuppet_classes = zulip::voyager\ndeploy_type = voyager" > /etc/zulip/zulip.conf && \ | ||
cd /root/zulip && \ | ||
git clone https://github.com/zulip/zulip.git . && \ | ||
git checkout "$ZULIP_VERSION" && \ | ||
cp -rf /root/puppet-zulip/* /root/zulip/puppet/zulip/ && \ | ||
rm -rf /root/puppet-zulip && \ | ||
echo "[machine]\npuppet_classes = zulip::voyager\ndeploy_type = voyager" > /etc/zulip/zulip.conf && \ | ||
/root/zulip/scripts/zulip-puppet-apply -f && \ | ||
cp -fa /root/zulip/zproject/local_settings_template.py /etc/zulip/settings.py && \ | ||
ln -nsf /etc/zulip/settings.py /root/zulip/zproject/local_settings.py && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,4 +59,4 @@ docker run \ | |
-e "ZULIP_SETTINGS_DEFAULT_FROM_EMAIL=Zulip <[email protected]>" \ | ||
-e "ZULIP_SETTINGS_EMAIL_HOST=smtp.example.com" \ | ||
-e "[email protected]" \ | ||
quay.io/galexrt/zulip:1.3.7-1 | ||
quay.io/galexrt/zulip:1.3.7-2 |