#Is there instructions to upgrade existing install with the latest security update anywhere??
27 messages · Page 1 of 1 (latest)
have you checked the docs?
Install Seerr using Docker
Install Seerr using Docker
Install Seerr by building from source
its literally there for all the supported installation method.
Where can I find this? "Finally, run the container with the same parameters originally used to create the container:
docker run -d ..."
That depends on what you ran with. Docker command method depends on what you used to create it (which is why most everyone uses compose instead)
You can find docker inspect seerr to see what volume mount it was using though
I have no idea I just followed instructions for jellyseerr (I don't recall having to remember off the top of my head any bespoked cmd lines) then seer migration, all i know is Docker was somehow involved, the migration was convoluted and I eventually got assistance from you which eventually got seerr running, thx. As it it stands now my seerr install is non functional and i'm clueless as to how to get it going beacuse i do not know how to construct the command line.
the command is literally the same.
as the docs.
you just have to mount the volume.
I just told you what to run to find the mount point.
.
You just deleted seerr container without checking which mount 💀
But its okay
Do you know where your config mount is
Can just rerun creation with the mount point
version: '3'
services:
seerr:
dns:
- 1.1.1.1 # Cloudflare DNS
- 8.8.8.8 # Google DNS
image: ghcr.io/seerr-team/seerr:latest
container_name: seerr
environment:
- forceIpv4First=true
- LOG_LEVEL=debug
ports:
- 5005:5055
volumes:
- ./config:/app/config
restart: unless-stopped
Run docker compose pull && docker compose up -d
In this folder
back up and running, I had to install docker compose plugin to get the command to work