#Setup page unreachable after installing on Raspberry Pi

22 messages · Page 1 of 1 (latest)

tulip thicket
#

I have tried installing Overseerr via docker and snap. They seem to have installed correctly, but when I am visiting localhost:5055 it does not work. How should I approach this?

tulip thicket
#

docker log overseerr gives the following error

opal tundra
#

are you running it via snap or via docker?

tulip thicket
#

I tried snap first, that didn't work. After removing the snap version I installed the docker version, but that didn't work too.

opal tundra
#

What command are you running to start the docker version?

tulip thicket
#
  --name overseerr \
  -e LOG_LEVEL=debug \
  -e TZ=Europe/Amsterdam \
  -p 5055:5055 \
  -v /home/pi/overseerr/config:/app/config \
  --restart unless-stopped \
  sctx/overseerr```
#

Also tried with the user UID and GID:

docker run -d \
  --name overseerr \
  -e LOG_LEVEL=debug \
  -e TZ=Europe/Amsterdam \
  -p 5055:5055 \
  --user 1000:1000 \
  -v /home/pi/overseerr/config:/app/config \
  --restart unless-stopped \
  sctx/overseerr```
#

It's up for a couple of seconds and then goes to restarting

#

The same happens for the docker-compose up -d command with a docker-compose.yml

tulip thicket
#

Do you know what I can do to show you more information @opal tundra ?

#

Should the config folder (/home/pi/overseerr/config) exist already? What does it need to contain? Which permissions and ownership does it have to have?

tulip thicket
#

The weird part is that it works on my laptop (with the snap command)

slow pond
#

This is what my working docker compose looks like if I change my volume mapping to yours. maybe try this and see if it works?


services:
  overseerr:
    image: sctx/overseerr:latest
    container_name: overseerr
    environment:
      - LOG_LEVEL=debug
      - TZ=America/New_York
    ports:
      - 5055:5055
    volumes:
      - /home/pi/overseerr/config:/app/config
    restart: unless-stopped
tulip thicket
#

Thanks for your help but running it with this in the docker-compose.yml and then docker-compose up -d gives me a done seemingly running the application. However, I still can't reach localhost:5055. Maybe it is my config folder. What is in your config folder? Can you share it? Can you share which permissions it has? Which user owns the folder?

slow pond
#

have you tried accessing from the local IP of your pi rather than localhost? I'm not at my computer right now to share my config

#

ex: 192.168.0.102:5055

tulip thicket
#

Yes, without luck.

#

The container is not running, I think that is the problem. It keeps restarting.

tulip thicket
#

when I run the snap version and run sudo snap logs I get the above error

tulip thicket
#

maybe it is because my raspberry pi is not fully up to date. I am trying an full-system update now

tulip thicket
#

It works! I have updated node to a new version. After that I ran sudo apt full-upgrade and updated snapcraft by sudo snap install core; sudo snap refresh core