From ee4306626b3f7f445c856f7ce13cf2b849457c9b Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Thu, 26 Feb 2026 00:37:58 -0600 Subject: [PATCH] Add homepage stack --- compose.yaml | 1 - homepage.yml | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 homepage.yml diff --git a/compose.yaml b/compose.yaml index f3fe298..36c0091 100644 --- a/compose.yaml +++ b/compose.yaml @@ -8,7 +8,6 @@ volumes: syncthing_data: services: - sonarr: image: lscr.io/linuxserver/sonarr:latest container_name: sonarr diff --git a/homepage.yml b/homepage.yml new file mode 100644 index 0000000..4810a67 --- /dev/null +++ b/homepage.yml @@ -0,0 +1,15 @@ + +services: + homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + environment: + HOMEPAGE_ALLOWED_HOSTS: home.mpdavis.com,10.0.2.0:3001 + PUID: 1000 + PGID: 1000 + ports: + - 3000:3001 + volumes: + - /mnt/nas/homelab/docker/homepage:/app/config + - /var/run/docker.sock:/var/run/docker.sock:ro + restart: unless-stopped