ansible-nas/tasks/tautulli.yml
Craig Jarvis 4033bfb60d Added timezone to the all.yml file. Updated some containers to use it
Not all containers can use the TZ as an ENV. Updated the ones that can.
2018-11-13 09:30:13 +11:00

22 lines
544 B
YAML

- name: Create Tautulli Directories
file:
path: "{{ item }}"
state: directory
# mode: 0755
with_items:
- "{{ tautulli_config_directory }}"
- name: Tautulli Docker Container
docker_container:
name: tautulli
image: linuxserver/tautulli
pull: true
volumes:
- "{{ tautulli_config_directory }}:/config:rw"
network_mode: "host"
env:
TZ: "{{ ansible_nas_timezone }}"
PUID: "{{ tautulli_user_id }}"
PGID: "{{ tautulli_group_id }}"
restart_policy: unless-stopped
memory: 1g