jonaswinkler / paperless-ng

A supercharged version of paperless: scan, index and archive all your physical documents
https://paperless-ng.readthedocs.io/en/latest/
GNU General Public License v3.0
5.37k stars 357 forks source link

Update docker to 0.19.4? #405

Closed Matthias84 closed 3 years ago

Matthias84 commented 3 years ago

(Sorry I'm pretty new to docker and not familar with all the details)

I installed 0.19.3 with the dockerfiles.tar.xz. To get the most recent 0.19.4 I tried to upgrade like the docs say:

docker-compose down
docker-compose pull
docker-compose up

Unfortunatly the UI says still 0.19.3, but the pull didn't report any errors?

jonaswinkler commented 3 years ago

Up until now, the docker-compose.yml file specified the exact version and updating required replacment of that file. I've simplified the update process.

Either grab the new version of the file from /docker/compose in the repository, or find the line that says:

image: jonaswinkler/paperless-ng:0.9.13

and replace that with

image: jonaswinkler/paperless-ng:latest

This way, you'll always update to the latest version when executing the pull command. Also works very nicely in combination with watchtower for automatic updates.

I'll add a note to the next changelog.

jonaswinkler commented 3 years ago

Please close this if your issue is resolved.