(simatec) Update Piler

This commit is contained in:
simatec 2023-01-26 21:48:51 +01:00
parent e5ecdeb50b
commit 0dbbd8ee10
7 changed files with 31 additions and 17 deletions

4
.gitignore vendored
View file

@ -1,5 +1,5 @@
.git
test.sh
.vscode
.DS_Store
/build/test_build.conf
/build/test_build.conf
piler.conf

View file

@ -152,6 +152,9 @@ To leave the container on the console you have to execute 2x `exit`.
## Changelog
### 0.9.1 (23.01.2023)
* (simatec) Piler updated
### 0.9.1 (23.01.2023)
* (simatec) Piler Docker Hub added
* (simatec) Fix Automatic Import

View file

@ -33,15 +33,20 @@ RUN apt-get update && \
rm -f ${PACKAGE} /etc/nginx/sites-enabled/default /etc/piler/piler.key /etc/piler/piler.pem /etc/piler/config-site.php && \
crontab -u $PILER_USER /usr/share/piler/piler.cron
VOLUME ["/etc/piler"]
VOLUME ["/var/piler/store"]
VOLUME ["/var/piler/manticore"]
VOLUME ["/var/piler/imap"]
VOLUME ["/var/piler/stat"]
VOLUME ["/var/spool/cron/crontabs"]
VOLUME ["/etc/piler","/var/piler/store","/var/piler/manticore","/var/piler/imap","/var/piler/stat","/var/spool/cron/crontabs"]
EXPOSE 25 80 443
EXPOSE 25/tcp
EXPOSE 80/tcp
EXPOSE 443/tcp
# Clean up APT when done.
RUN apt clean && \
apt autoremove && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY start.sh /start.sh
CMD ["/start.sh"]
# chmod start.sh
RUN chmod a+x /start.sh
CMD ["/start.sh"]

View file

@ -1,6 +1,6 @@
# Piler Package
PILER_PACKAGE="piler_1.4.3-jammy-ee8912fe_amd64.deb"
PILER_PACKAGE="piler_1.4.3-jammy-38d8b519_amd64.deb"
# Piler Version

View file

@ -21,7 +21,8 @@ chmod a+x start.sh
# Package Download
rm -f $buildPth/*.deb
curl -OL https://bitbucket.org/jsuto/piler/downloads/$PILER_PACKAGE
#curl -OL https://bitbucket.org/jsuto/piler/downloads/$PILER_PACKAGE
wget https://bitbucket.org/jsuto/piler/downloads/$PILER_PACKAGE -O $PILER_PACKAGE
set -o errexit
set -o pipefail

View file

@ -247,7 +247,8 @@ elif [ -f $installPth/.configDone ]; then
for fileUpdate in update.sh README.md; do
echo "${purple}${HLINE}${HLINE_SMALL}"
echo "${purple}****** Download Update $fileUpdate ******"
curl -o $installPth/$fileUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate
#curl -o $installPth/$fileUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate
wget https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate -O $installPth/$fileUpdate
echo "${purple}${HLINE}${HLINE_SMALL}${normal}"
echo
done
@ -456,7 +457,8 @@ include('auth-mailcow.php');
// ### end added by Piler-Installer ###
EOF
curl -o $etcPth/auth-mailcow.php https://raw.githubusercontent.com/patschi/mailpiler-mailcow-integration/master/auth-mailcow.php
#curl -o $etcPth/auth-mailcow.php https://raw.githubusercontent.com/patschi/mailpiler-mailcow-integration/master/auth-mailcow.php
wget https://raw.githubusercontent.com/patschi/mailpiler-mailcow-integration/master/auth-mailcow.php -O $etcPth/auth-mailcow.php
fi
# add config settings

View file

@ -126,7 +126,8 @@ for ymlUpdate in piler-default.yml piler-ssl.yml; do
echo
echo "${purple}${HLINE}${HLINE_SMALL}"
echo "${purple}****** Download Update $ymlUpdate ******"
curl -o $configPth/$ymlUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/config/$ymlUpdate
#curl -o $configPth/$ymlUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/config/$ymlUpdate
wget https://raw.githubusercontent.com/simatec/piler-docker/main/config/$ymlUpdate -O $configPth/$ymlUpdate
echo "${purple}${HLINE}${HLINE_SMALL}${normal}"
echo
done
@ -135,7 +136,8 @@ for fileUpdate in install-piler.sh LICENSE piler.conf.example; do
echo
echo "${purple}${HLINE}${HLINE_SMALL}"
echo "${purple}****** Download Update $fileUpdate ******"
curl -o $installPth/$fileUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate
#curl -o $installPth/$fileUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate
wget https://raw.githubusercontent.com/simatec/piler-docker/main/$fileUpdate -O $installPth/$fileUpdate
echo "${purple}${HLINE}${HLINE_SMALL}${normal}"
echo
done
@ -144,7 +146,8 @@ for buildUpdate in start.sh build.sh Dockerfile build.conf; do
echo
echo "${purple}${HLINE}${HLINE_SMALL}"
echo "${purple}****** Download Update $buildUpdate ******"
curl -o $buildPth/$buildUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/build/$buildUpdate
#curl -o $buildPth/$buildUpdate https://raw.githubusercontent.com/simatec/piler-docker/main/build/$buildUpdate
wget https://raw.githubusercontent.com/simatec/piler-docker/main/build/$buildUpdate -O $buildPth/$buildUpdate
echo "${purple}${HLINE}${HLINE_SMALL}${normal}"
echo
done