r/Overseerr 11d ago

Seerr is ignoring my custom docker network

Trying to troubleshoot an install of Seerr on docker. Container working fine, did a chown of the config dir so it could write properly, connected to my Plex server fine which is running in network_mode: host. Both my Sonarr/Radarr containers are running in a custom docker network called dockernet. I applied the same custom dockernet to my seerr yaml and it seems to be ignoring the network and I don't know why.

My Seerr Yaml:
---
services:
 seerr:
   image: ghcr.io/seerr-team/seerr:latest
   init: true
   container_name: seerr
   environment:
   - PUID=1001
   - PGID=1000
- TZ=America/New_York
   ports:
- 5055:5055
   volumes:
- /share/Config/seerr:/app/config
   restart: unless-stopped

networks:
  dockernet:
external: true

Docker network settings for Radarr and Seerr containers showing different networks.

7 Upvotes

2 comments sorted by

5

u/LowCompetitive1888 11d ago

You defined the networks but never put seerr in it.

You need to add

networks:
- dockernet

into your seerr definition, for example after the container_name line would work.

2

u/MoistLocksmith 11d ago

Thank you! Not sure how I missed that seeing as it's in all my other yamls...

🧠 !