#Error message after starting the Docker container.

5 messages · Page 1 of 1 (latest)

valid fox
#

I receive the following error message in a continuous loop and cannot log in.

I proceeded as follows

  1. git clone https://github.com/sct/overseerr.git
  2. cd overseerr
  3. yarn install
  4. yarn build
  5. 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.

  1. docker build -t overseerr .
  2. 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?

hollow perch
#

When you build it you need to pass in

do this `docker build --tag overseerr:latest --build-arg COMMIT_TAG=xxxxx .`
valid fox
#

Hi. Thanks for your help. Even though I don't want to publish it to Docker Hub? I always thought that specifying tags etc. was not mandatory. I'm trying to build Overseerr locally as docker just to see if it runs according to my build.

valid fox
#

Ok. Still confused about the "Why" but using your build command worked 👍

hollow perch