My seer is often extremely slow.
Symptoms:
- Discover/Movies/Series pages are very slow loading
- Images of items are very slow to load
- When you click on an item (a movie/serie), loading is even slower (60+ seconds)
- Settings page is extremely fast
- Other apps like Sonarr and Radarr are extremely fast
Setup:
- Docker compose image
- LXC running on a m2 HDD
- LXC is on a 192.x internal IP address
- My 10.x LAN is proxied via a Caddy to jellyseer
x-common-env: &common-env
PUID: "1000"
PGID: "10000"
TZ: "Europe/Amsterdam"
LOG_LEVEL: debug
UMASK: "002"
services:
seerr:
image: ghcr.io/fallenbagel/jellyseerr:latest
container_name: seerr
environment:
<<: *common-env
LOG_LEVEL: info
volumes:
- /root/docker/seerr:/app/config
ports:
- "5055:5055"
restart: unless-stopped
networks:
- arr_net
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
Already tried:
- Changed the LXC to not use SWAP memory
- Enabled Image Caching (since then images loaded are a bit faster, but uncached images still 30+ seconds)