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?