homelab/tasks/sabnzbd.yml

33 lines
933 B
YAML
Raw Permalink Normal View History

2024-09-09 22:37:51 +10:00
---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
2024-09-10 22:09:43 +10:00
- "{{ data_folder }}/sabnzbd"
- "{{ data_folder }}/sabnzbd/config"
2024-09-09 22:37:51 +10:00
- name: Create the sabnzbd container
docker_container:
name: sabnzbd
image: linuxserver/sabnzbd:4.3.3
restart_policy: unless-stopped
recreate: true
networks:
- name: proxy
env:
PUID: "1000"
PGID: "1000"
TZ: "Australia/Brisbane"
HOSTNAME: "sabnzbd.comprofix.xyz"
DOCKER_MODS: "ghcr.io/themepark-dev/theme.park:sabnzbd"
volumes:
2024-09-10 22:09:43 +10:00
- "{{ data_folder }}/sabnzbd/config:/config"
2024-09-09 22:37:51 +10:00
- /mnt/nfs/data:/data
labels:
traefik.enable: "true"
traefik.http.routers.sabnzbd.rule: "Host(`sabnzbd.comprofix.xyz`)"
traefik.http.routers.sabnzbd.entrypoints: "https"
traefik.http.routers.sabnzbd.tls: "true"
traefik.http.services.sabnzbd.loadbalancer.server.port: "8080"