From d406eac80528f5af9be257414291cff301b760ce Mon Sep 17 00:00:00 2001 From: cytopia Date: Sat, 14 Nov 2020 10:33:22 +0100 Subject: [PATCH] Provide updating information --- UPDATING.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/UPDATING.md b/UPDATING.md index 71a3fa43..fa5582f9 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -3,6 +3,31 @@ This document will hold all information on how to update between major versions. +## Update from `v1.8.1` to `v1.8.2` + +**PR:** TBD + +This PR adds many new images, ensure to remove your current old state before running them: +```bash +docker-compose stop +docker-compose rm -f +``` + + +## Update from `v1.8.0` to `v1.8.1` + +**PR:** https://github.com/cytopia/devilbox/pull/747 + +This PR ensures to have all directories in log/ mod/ cfg/ added by default. Prior this, some +of those directories might have been created by Docker (running as root) and they have the wrong +permissions (root instead of local user). +To mitigate this, you need to adjust directory permissions prior pulling this tag. + +```bash +sudo chown -R : . +``` + + ## Update from `v1.6.2` to `v1.6.3` **PR:** https://github.com/cytopia/devilbox/pull/689