Folder reorg if prep for using git runner
This commit is contained in:
parent
304e85e450
commit
1a3749112d
102 changed files with 833 additions and 244 deletions
53
swarm/recyclarr.yaml
Normal file
53
swarm/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