#Setup page unreachable after installing on Raspberry Pi
22 messages · Page 1 of 1 (latest)
docker log overseerr gives the following error
are you running it via snap or via docker?
I tried snap first, that didn't work. After removing the snap version I installed the docker version, but that didn't work too.
What command are you running to start the docker version?
--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
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?
The weird part is that it works on my laptop (with the snap command)
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
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?
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
Yes, without luck.
The container is not running, I think that is the problem. It keeps restarting.
maybe it is because my raspberry pi is not fully up to date. I am trying an full-system update now
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