mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
4033bfb60d
Not all containers can use the TZ as an ENV. Updated the ones that can.
24 lines
602 B
YAML
24 lines
602 B
YAML
- name: Create Plex Directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
# mode: 0755
|
|
with_items:
|
|
- "{{ plex_config_directory }}"
|
|
|
|
- name: plex Docker Container
|
|
docker_container:
|
|
name: plex
|
|
image: linuxserver/plex
|
|
pull: true
|
|
volumes:
|
|
- "{{ plex_config_directory }}:/config:rw"
|
|
- "{{ plex_movies_directory }}:/movies:rw"
|
|
- "{{ plex_tv_directory }}:/tv:rw"
|
|
network_mode: "host"
|
|
env:
|
|
TZ: "{{ ansible_nas_timezone }}"
|
|
PUID: "{{ plex_user_id }}"
|
|
PGID: "{{ plex_group_id }}"
|
|
restart_policy: unless-stopped
|
|
memory: 1g
|