diff --git a/Dockerfile b/Dockerfile index 2d37a69..964176e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,7 +90,7 @@ RUN \ && curl -SL https://vestacp.com/pub/vst-install-ubuntu.sh -o /tmp/vst-install-ubuntu.sh \ # put nginx on hold so it doesn't get updates with apt-get upgrade, also remove from vesta apt-get - && echo "nginx hold" | dpkg --set-selections \ + && apt-mark hold nginx postgresql-10 postgresql-client-10 postgresql-doc-10 postgresql-contrib \ && sed -i -e "s/\"nginx apache2/\"apache2/g" /tmp/vst-install-ubuntu.sh \ # fix mariadb instead of mysql @@ -98,7 +98,7 @@ RUN \ # fix postgres-9.6 instead of 9.5 && sed -i -e "s/postgresql /postgresql\-9\.6 /g" /tmp/vst-install-ubuntu.sh \ - && sed -i -e "s/postgresql\-constrib/postgresql\-contrib\-9\.6/g" /tmp/vst-install-ubuntu.sh \ + && sed -i -e "s/postgresql\-contrib/postgresql\-contrib\-9\.6 postgresql\-client\-9\.6/g" /tmp/vst-install-ubuntu.sh \ # begin install vesta && bash /tmp/vst-install-ubuntu.sh \ diff --git a/README.md b/README.md index 007fb70..f9f4095 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ If you use this Docker for hosting and allow your user to login, I also recommen Enjoy!!! ## Release Notes -1.3.0 - **Breaking Changes** update to postgresql-9.6, add pgaudit and postgis geo extension. +1.3.0 - **Breaking Changes**: update to postgresql-9.6, add pgaudit and postgis geo extension. This is the most popular postgresql version that also work best with postgis. Make sure you have all your postgresql databases backuped before updating to this version. 1.2.1 - Update to be more secure and compliance. A bunch of security issues discovered during the holidays were patched by various vendors including cpu (meltdown & spectre) and .net core issues: