fix: Increase arr memory size

This commit is contained in:
Tony Du 2025-02-10 12:36:19 -08:00
parent f5799ce9ac
commit 82720d06b0

View File

@ -117,7 +117,7 @@ services:
resources: resources:
limits: limits:
cpus: '0.5' cpus: '0.5'
memory: 256M memory: 512M
reservations: reservations:
cpus: '0.1' cpus: '0.1'
memory: 64M memory: 64M
@ -149,7 +149,7 @@ services:
resources: resources:
limits: limits:
cpus: '0.5' cpus: '0.5'
memory: 256M memory: 512M
reservations: reservations:
cpus: '0.1' cpus: '0.1'
memory: 64M memory: 64M
@ -185,11 +185,14 @@ services:
- traefik - traefik
volumes: volumes:
- jellyseerr_config:/app/config - jellyseerr_config:/app/config
depends_on: # This does have a soft dependency on radarr and sonarr, but I don't want
radarr: # to wait for it because when rolling out updates, I want to have as little
condition: service_started # downtime on jellyseerr as possible
sonarr: # depends_on:
condition: service_started # radarr:
# condition: service_started
# sonarr:
# condition: service_started
restart: unless-stopped restart: unless-stopped
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"