mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
32 lines
No EOL
979 B
YAML
32 lines
No EOL
979 B
YAML
---
|
|
- name: Create Couchpotato Directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
# mode: 0755
|
|
with_items:
|
|
- "{{ docker_home }}/couchpotato/config"
|
|
|
|
- name: Couchpotato Docker Container
|
|
docker_container:
|
|
name: couchpotato
|
|
image: linuxserver/couchpotato
|
|
pull: true
|
|
volumes:
|
|
- "{{ couchpotato_config_directory }}:/config:rw"
|
|
- "{{ couchpotato_downloads_directory }}/completed:/downloads:rw"
|
|
- "{{ couchpotato_movies_directory }}:/movies:rw"
|
|
- "{{ couchpotato_torrents_directory }}:/torrents:rw"
|
|
ports:
|
|
- "5050:5050"
|
|
env:
|
|
TZ: "{{ ansible_nas_timezone }}"
|
|
PUID: "{{ couchpotato_user_id }}"
|
|
PGID: "{{ couchpotato_group_id }}"
|
|
restart_policy: unless-stopped
|
|
memory: 1g
|
|
labels:
|
|
traefik.backend: "couchpotato"
|
|
traefik.frontend.rule: "Host:couchpotato.{{ ansible_nas_domain }}"
|
|
traefik.enable: "{{ couchpotato_available_externally }}"
|
|
traefik.port: "5050" |