Update CHANGELOG

This commit is contained in:
CrazyMax
2019-10-12 18:37:55 +02:00
parent e6a9a606e3
commit 299d09bea2
2 changed files with 10 additions and 14 deletions

View File

@@ -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)

View File

@@ -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
```