I’m trying to setup an invidious instance with Docker, but it isn’t completing.

invidious_1 | 2023-08-27 17:23:46 UTC [info] 200 GET /api/v1/comments/jNQXAC9IVRw 479.27ms

It’s been giving the same message for over an hour, and I can’t connect to the web interface either. Any ideas?

  • WhyAUsername_1@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    10 months ago

    To add to this, are you running docker-compose up with a -d flag?

    When I got into Dockers, I got confused when the docker command would not complete (i.e. get back to bash shell after completing the command). In docker, you need to specify the “-d” flag to run it in background (i.e. separate daemon)

    One more point, when @CumBroth@discuss.tchncs.de says

    You’d need to change that to 3000:3000.

    It should be

        ports:
          - "3000:3000"
    
    • CumBroth@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      3
      ·
      10 months ago

      Ooooh, good catch. I assumed “it’s been giving me the same message for over an hour” to mean that they’ve been monitoring the logs, not running in interactive mode. O_O