ansible-nas/tasks/youtubedlmaterial.yml

40 lines
1.6 KiB
YAML
Raw Normal View History

2020-04-23 06:12:39 +00:00
---
- name: YouTubeDL-Material Directory
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ youtubedlmaterial_data_directory }}/appdata"
- "{{ youtubedlmaterial_data_directory }}/audio"
- "{{ youtubedlmaterial_data_directory }}/video"
- "{{ youtubedlmaterial_data_directory }}/subscriptions"
- "{{ youtubedlmaterial_dl_audio_directory }}"
- "{{ youtubedlmaterial_dl_video_directory }}"
- "{{ youtubedlmaterial_dl_subscriptions_directory }}"
- name: YouTubeDL-Material Docker Container
docker_container:
name: youtubedlmaterial
image: tzahi12345/youtubedl-material:latest
pull: true
volumes:
- "{{ youtubedlmaterial_data_directory }}/appdata:/app/appdata:rw"
- "{{ youtubedlmaterial_dl_audio_directory }}:/app/audio:rw"
- "{{ youtubedlmaterial_dl_video_directory }}:/app/video:rw"
2020-05-09 07:21:29 +00:00
- "{{ youtubedlmaterial_dl_subscriptions_directory }}:/app/subscriptions:rw"
2020-04-23 06:12:39 +00:00
ports:
- "{{ youtubedlmaterial_port_http }}:17442"
env:
ALLOW_CONFIG_MUTATIONS: "true"
TZ: "{{ ansible_nas_timezone }}"
restart_policy: always
memory: 1g
2020-04-23 06:12:39 +00:00
labels:
traefik.enable: "{{ youtubedlmaterial_available_externally }}"
traefik.http.routers.youtubedlmaterial.rule: "Host(`youtubedlmaterial.{{ ansible_nas_domain }}`)"
traefik.http.routers.youtubedlmaterial.tls.certresolver: "letsencrypt"
traefik.http.routers.youtubedlmaterial.tls.domains[0].main: "{{ ansible_nas_domain }}"
traefik.http.routers.youtubedlmaterial.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
traefik.http.services.youtubedlmaterial.loadbalancer.server.port: "17442"