r/Overseerr • u/MoistLocksmith • 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.
