I have a dockerized setup of document server de. I am trying to update from 8.1.1.26 to 8.2, but it does not seem to be able to pull the latest image. Even after pulling manually the latest version, it is still not working. Any idea how to solve this issue?
I think I figured it out, but ill update after testing if I solved it.
No luck yet. Somehow it does not manage to use the latest image to rebuild. Still working on it
If you are pulling latest
image, please make sure to remove previous one. Docker cannot pull two images with same tag. Alternatively, you can try pulling image with 8.2
tag instead of latest.
In general, is there any message returned when pulling new image?
Ill test removing the previous image and pulling again. Even though after pulling i can see the image that was updated 5 days ago which means it is the new image but somehow when rebuilding the container it does not manage to use it. Probably some issue with my volumes. Im still debugging
General scenario for manual update is:
- Execute
documentserver-prepare4shutdown.sh
from inside the current container to stop Document Server without data loss; - Stop and remove the container once script has finished with
docker stop <ID>
anddocker rm <ID>
; - Remove previous image with
docker image rm <image>
; - Pull new image and start it with
docker run
.
Looking forward to your feedback anyways.