mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
d86b67c328
This allows devices such as smart TVs to find and stream from emby
26 lines
658 B
YAML
26 lines
658 B
YAML
- name: Create Emby Directories
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ emby_config_directory }}"
|
|
|
|
- name: emby Docker Container
|
|
docker_container:
|
|
name: emby
|
|
image: emby/embyserver
|
|
pull: true
|
|
volumes:
|
|
- "{{ emby_config_directory }}:/config:rw"
|
|
- "{{ emby_movies_directory }}:/movies:rw"
|
|
- "{{ emby_tv_directory }}:/tv:rw"
|
|
ports:
|
|
- "8096:8096" # HTTP port
|
|
- "8920:8920" # HTTPS port
|
|
network_mode: host
|
|
env:
|
|
TZ: "{{ ansible_nas_timezone }}"
|
|
PUID: "{{ emby_user_id }}"
|
|
PGID: "{{ emby_group_id }}"
|
|
restart_policy: unless-stopped
|
|
memory: 1g
|