From 321ce1c3f647cdbed1fc4448faef813f3309ec79 Mon Sep 17 00:00:00 2001 From: kelin Date: Thu, 15 Jan 2026 21:41:52 -0500 Subject: [PATCH] Fix dashboard stack resource limits corruption - Fix malformed deploy.resources sections in homepage and homarr - Ensure proper YAML indentation for reservations sections - Apply web service resource limits (0.5 CPU, 256MB memory each) - Validate both deployed and repository configurations --- docker-compose/dashboards.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docker-compose/dashboards.yml b/docker-compose/dashboards.yml index b78fde0..beb5e59 100644 --- a/docker-compose/dashboards.yml +++ b/docker-compose/dashboards.yml @@ -11,6 +11,15 @@ services: # Access at: https://home.${DOMAIN} homepage: image: ghcr.io/gethomepage/homepage:latest + deploy: + resources: + limits: + cpus: '0.50' + memory: 256M + pids: 512 + reservations: + cpus: '0.25' + memory: 128M container_name: homepage restart: unless-stopped networks: @@ -40,6 +49,15 @@ services: # Access at: https://homarr.${DOMAIN} homarr: image: ghcr.io/ajnart/homarr:latest + deploy: + resources: + limits: + cpus: '0.50' + memory: 256M + pids: 512 + reservations: + cpus: '0.25' + memory: 128M container_name: homarr restart: unless-stopped networks: