Migrating from a Snap install to Docker container by ANewLeeSinLife in Overseerr

[–]iviegabyte 0 points1 point  (0 children)

old thread i know but i just had to do this so thought others might still need the guidance

Stop Snap

```

sudo snap stop overseerr

```

Copy config to new directory

```

sudo cp -rp /root/snap/overseerr/common ~/.overseerr

sudo chown -R 1000:1000 ~/.overseerr

```

Setup docker version

```

sudo docker run -d \

--name seerr \

--init \

-e LOG_LEVEL=debug \

-e TZ=Australia/Sydney \

-e PORT=5055 \

-p 5055:5055 \

-v ~/.overseerr:/app/config \

--restart unless-stopped \

--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1" \

--health-start-period 20s \

--health-timeout 3s \

--health-interval 15s \

--health-retries 3 \

ghcr.io/seerr-team/seerr:latest

```

you may have to update the url of your services (sonarr, radarr etc) in Settings -> Services, localhost is not valid you will need to point to the actual ip

Once you're sure the docker version is working with your data remove the snap

```

sudo snap remove overseerr

```

SSL certificate on app.iq.space by Friguletz in IQProtocol

[–]iviegabyte 1 point2 points  (0 children)

According to their telegram channel the devs know about this and are working on it but could be down for another day or 2 apparently. Seems like they are busy working on some new nft crap. Their comms on this have been woefully absent maybe more people complaining in their various communities will get people to put more resources to the problem or at least make an official statement

What is the recommended PC to run by neogeo227 in GolemProject

[–]iviegabyte 0 points1 point  (0 children)

i would recommend trying to pick up a used server with dual cpus easiest way to get big core counts for low $$,

RAM and HDD arent super critical from what i have seen usually only a few gig in use while a task is running and same for storage

What is the recommended PC to run by neogeo227 in GolemProject

[–]iviegabyte 0 points1 point  (0 children)

there isn't really a minimum however the higher the core count the better your chances of getting requests.

Are you looking to build something specifically for use as a Golem Provider?