sdf
This commit is contained in:
parent
ea60d22ddf
commit
2f7c21c6d4
2 changed files with 55 additions and 1 deletions
|
|
@ -2,7 +2,8 @@ services:
|
||||||
homepage:
|
homepage:
|
||||||
image: ghcr.io/gethomepage/homepage:latest
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
# container_name: homepage
|
# container_name: homepage
|
||||||
# environment:
|
environment:
|
||||||
|
- HOMEPAGE_ALLOWED_HOSTS=homepage.netgrimoire.com
|
||||||
# PUID: 998 # optional, your user id
|
# PUID: 998 # optional, your user id
|
||||||
# PGID: 1001 # optional, your group id
|
# PGID: 1001 # optional, your group id
|
||||||
# TZ: America/Chicago
|
# TZ: America/Chicago
|
||||||
|
|
|
||||||
53
recyclarr.yaml
Normal file
53
recyclarr.yaml
Normal file
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue