From 2f7c21c6d452db5747086fde3be13cb810920572 Mon Sep 17 00:00:00 2001 From: traveler Date: Mon, 22 Dec 2025 16:12:43 -0600 Subject: [PATCH] sdf --- homepage.yaml | 3 ++- recyclarr.yaml | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 recyclarr.yaml diff --git a/homepage.yaml b/homepage.yaml index 84161fa..bcf2c46 100755 --- a/homepage.yaml +++ b/homepage.yaml @@ -2,7 +2,8 @@ services: homepage: image: ghcr.io/gethomepage/homepage:latest # container_name: homepage - # environment: + environment: + - HOMEPAGE_ALLOWED_HOSTS=homepage.netgrimoire.com # PUID: 998 # optional, your user id # PGID: 1001 # optional, your group id # TZ: America/Chicago diff --git a/recyclarr.yaml b/recyclarr.yaml new file mode 100644 index 0000000..fd35d56 --- /dev/null +++ b/recyclarr.yaml @@ -0,0 +1,53 @@ +version: "3.8" + +services: + recyclarr: + image: ghcr.io/recyclarr/recyclarr:latest + user: "1001:998" + environment: + - PUID=1001 + - PGID=998 + - TZ=America/Chicago + + # Run on an interval (simple + reliable) + # Adjust to taste: 6h, 12h, 24h, etc. + - RECYCLARR_RUN_MODE=interval + - RECYCLARR_INTERVAL=12h + + # Optional: if you want extra logging + # - RECYCLARR_LOG_LEVEL=Information + + volumes: + - /data/nfs/Baxter/Docker/recyclarr:/config + + networks: + - netgrimoire + + deploy: + placement: + constraints: + - node.hostname == docker4 + mode: replicated + replicas: 1 + + restart_policy: + condition: any + delay: 10s + max_attempts: 0 + window: 30s + + update_config: + order: start-first + parallelism: 1 + delay: 10s + + labels: + # ------------------------- + # Diun (image update notify) + # ------------------------- + diun.enable: "true" + + +networks: + netgrimoire: + external: true