diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c278455..d5786ece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,19 @@ * Multi-platform Docker image * Switch to GitHub Actions -* Run Docker container as non-root user -* Stop publishing Docker image on Quay +* :warning: Run Docker container as non-root user +* :warning: Stop publishing Docker image on Quay * Go 1.12.10 * Use GOPROXY -> :warning: **BREAKING CHANGES** -> See [UPGRADE notes](UPGRADE.md#130--140) for more info. +> :warning: **UPGRADE NOTES** +> As the Docker container now runs as a non-root user, you have to first stop the container and change permissions to `data` volume: +> ``` +> docker-compose stop +> chown -R 1000:1000 data/ +> docker-compose pull +> docker-compose up -d +> ``` ## 1.3.0 (2019/08/22) diff --git a/UPGRADE.md b/UPGRADE.md deleted file mode 100644 index 523f245d..00000000 --- a/UPGRADE.md +++ /dev/null @@ -1,10 +0,0 @@ -## 1.3.0 > 1.4.0 - -As the Docker container runs as a non-root user, you have to first stop the container and change permissions to `data` volume: - -``` -docker-compose stop -chown -R 1000:1000 data/ -docker-compose pull -docker-compose up -d -```