ansible-nas/tasks/emby.yml
Andrew Burrows d86b67c328 Change networking for emby container to host
This allows devices such as smart TVs to find and stream from emby
2019-03-01 20:54:16 +00:00

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