I receive the following error message in a continuous loop and cannot log in.
I proceeded as follows
- git clone https://github.com/sct/overseerr.git
- cd overseerr
- yarn install
- yarn build
- yarn start
All good until here. Overseerr works!
As soon as I put this into a Docker it no longer works and the error message mentioned above appears.
- docker build -t overseerr .
- docker run -d
--name overseerr
-e LOG_LEVEL=debug
-e TZ=Europe/Berlin
-e PORT=5055#optional
-p 5055:5055
-v overseerr:/app/config
--restart unless-stopped
overseerr
What could be the reason for this?