jorenn92 / Maintainerr

Looks and smells like Overseerr, does the opposite. Maintenance tool for the Plex ecosystem
https://maintainerr.info
MIT License
754 stars 13 forks source link

Fresh install with Docker Compose: UI doesn't load #1195

Closed chrisbenincasa closed 4 weeks ago

chrisbenincasa commented 1 month ago

Describe the bug All pages fail to load - no UI appears, spinner spins indefinitely, and there are errors in the console and container logs

To Reproduce Steps to reproduce the behavior:

  1. Create container with the docker compose installation from the README
  2. Go to IP:6246
  3. See loading spinner that spins indefinitely on all pages

Expected behavior UI loads

Screenshots

Screenshot 2024-07-30 at 10 42 36 PM

Device (please complete the following information):

Additional context Logs from container:

Error: connect ECONNREFUSED 127.0.0.1:3001
    at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1606:16) {
  errno: -111,
  code: 'ECONNREFUSED',
  syscall: 'connect',
  address: '127.0.0.1',

  port: 3001
}

Assuming there is some component that spins up on this port within the container that is failing, but I see no other logs related to that.

My compose:

version: '3'

services:
    maintainerr:
        image: ghcr.io/jorenn92/maintainerr:latest # or jorenn92/maintainerr:latest
        container_name: maintainerr
        user: 1002:1002   # the "maintainerr" user and group on my system
        volumes:
          - type: bind
            source: /data/maintainerr
            target: /opt/data
        environment:
          - TZ=America/New_York
        ports:
          - 6246:6246
        restart: unless-stopped
dhayab commented 1 month ago

I had the same issue and was about to stop the container when I got interrupted by something. When I came back the app was properly bootstrapped. It took ~3 minutes in my case:

2024-07-31T21:48:27.285972200Z   ▲ Next.js 14.2.3
2024-07-31T21:48:27.286535641Z   - Local:        http://localhost:6246
2024-07-31T21:48:27.286608605Z   - Network:      http://0.0.0.0:6246
2024-07-31T21:48:27.287591909Z 
2024-07-31T21:48:27.288059993Z  ✓ Starting...
2024-07-31T21:48:44.775227542Z  ✓ Ready in 17.5s

[...]

2024-07-31T21:51:30.076940197Z [maintainerr] | 31/07/2024 23:51:30  [INFO] [NestApplication] Nest application successfully started
jorenn92 commented 1 month ago

Could you share your full log file? Preferably with the DEBUG=true env var enabled. It seems like the backend wasn't started successfully and/or crashed completely.

chrisbenincasa commented 1 month ago

Definitely. Will post as soon as I can

On Fri, Aug 9, 2024 at 5:33 AM Joren V @.***> wrote:

Could you share your full log file? Preferably with the DEBUG=true env var enabled. It seems like the backend wasn't started successfully and/or crashed completely.

— Reply to this email directly, view it on GitHub https://github.com/jorenn92/Maintainerr/issues/1195#issuecomment-2277547342, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAMQRXZTKF4RKQ6XTB3Y45DZQSEG5AVCNFSM6AAAAABLXRIEVCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENZXGU2DOMZUGI . You are receiving this because you authored the thread.Message ID: @.***>

chrisbenincasa commented 4 weeks ago

Think this is resolved now, actually. I think it may have been the same issue that @dhayab mentioned. Sorry for the noise!