48 lines
2.3 KiB
Bash
Executable File
48 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
#Absolute path to this script
|
|
SCRIPT=$(readlink -f $0)
|
|
#Absolute path this script is in
|
|
SCRIPTPATH=$(dirname $SCRIPT)
|
|
|
|
cd $SCRIPTPATH
|
|
|
|
test -z $KEY && { echo "KEY is not defined."; exit 1; }
|
|
|
|
if ! test -f ~/secrets.tar.gz.enc
|
|
then
|
|
curl -o ~/secrets.tar.gz.enc "https://cloud.scimetis.net/s/${KEY}/download?path=%2F&files=secrets.tar.gz.enc"
|
|
if ! test -f ~/secrets.tar.gz.enc
|
|
then
|
|
echo "ERROR: ~/secrets.tar.gz.enc not found, exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
openssl enc -aes-256-cbc -d -in ~/secrets.tar.gz.enc | tar -zxv --strip 2 secrets/docker-mail-stack/fetchmailrc-orange \
|
|
secrets/docker-mail-stack/users secrets/docker-mail-stack/15-lda.conf secrets/docker-mail-stack/feed2imaprc \
|
|
secrets/docker-mail-stack/fetchmailrc-scimetis secrets/docker-mail-stack/fetchmailrc-laposte-sylvie \
|
|
|| { echo "Could not extract from secrets archive, exiting."; rm -f ~/secrets.tar.gz.enc; exit 1; }
|
|
sudo chown root. fetchmailrc-orange fetchmailrc-scimetis fetchmailrc-laposte-sylvie users 15-lda.conf feed2imaprc
|
|
sudo chmod a-r feed2imaprc
|
|
|
|
unset VERSION_DOVECOT VERSION_FETCHMAIL VERSION_FEED2IMAP
|
|
VERSION_DOVECOT=$(git ls-remote https://git.scimetis.net/yohan/docker-dovecot.git| head -1 | cut -f 1|cut -c -10)
|
|
VERSION_FETCHMAIL=$(git ls-remote https://git.scimetis.net/yohan/docker-fetchmail.git| head -1 | cut -f 1|cut -c -10)
|
|
VERSION_FEED2IMAP=$(git ls-remote https://git.scimetis.net/yohan/docker-feed2imap.git| head -1 | cut -f 1|cut -c -10)
|
|
|
|
rm -rf ~/build
|
|
mkdir -p ~/build
|
|
git clone https://git.scimetis.net/yohan/docker-dovecot.git ~/build/docker-dovecot
|
|
sudo docker build -t dovecot:$VERSION_DOVECOT ~/build/docker-dovecot
|
|
git clone https://git.scimetis.net/yohan/docker-fetchmail.git ~/build/docker-fetchmail
|
|
sudo docker build -t fetchmail:$VERSION_FETCHMAIL ~/build/docker-fetchmail
|
|
git clone https://git.scimetis.net/yohan/docker-feed2imap.git ~/build/docker-feed2imap
|
|
sudo docker build -t feed2imap:$VERSION_FEED2IMAP ~/build/docker-feed2imap
|
|
VERSION_DOVECOT=$VERSION_DOVECOT \
|
|
VERSION_FETCHMAIL=$VERSION_FETCHMAIL \
|
|
VERSION_FEED2IMAP=$VERSION_FEED2IMAP \
|
|
sudo -E bash -c 'docker-compose up --no-start --force-recreate'
|
|
# --force-recreate is used to recreate container when a file has changed
|
|
# /!\ We cannot remove the secrets files or restarting the container would become impossible.
|
|
rm -rf ~/build
|