#Upgrading on Windows

5 messages · Page 1 of 1 (latest)

modest geyser
#

Someone please help me figure out the steps to upgrade.
I'm not sure if I should use Linux or Windows commands.

I have wsl configured with Ubuntu 20.04
According to the container I have my volume config mounted at: /var/lib/docker/volumes/overseerr-data/_data
I also have an overseerr-data volume in Docker Desktop, I'm assuming I created that myself... I don't remember.

I don't see specific upgrading instructions for Windows users, here is my best guess on what to do from PowerShell:

docker stop overseerr && docker rm overseerr
docker pull sctx/overseerr
docker run -d --name overseerr -e LOG_LEVEL=debug -e TZ=Asia/Tokyo -p 5055:5055 -v "overseerr-data:/app/config" --restart unless-stopped sctx/overseerr:latest

Does that look correct, or is it possible I should be using the Linux commands because I have wsl with Ubuntu?

rich skiff
#

if i were using such an setup, i would simply write me an docker-compoose.yml. May i ask why you are using debug log level?

#

and with that compose file, you could simply do a "docker compose stop && docker compose pull && docker compose up -d"

modest geyser
#

I'm not too concerned about the details of the docker container, all of the parameters were from the default install command, I didn't adjust them

#

I just want to make sure theoretically I'm doing the right thing and should preserve my install settings