mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-26 10:15:14 +00:00
34 lines
721 B
YAML
34 lines
721 B
YAML
---
|
|
emby_enabled: false
|
|
emby_available_externally: false
|
|
|
|
# directories
|
|
emby_config_directory: "{{ docker_home }}/emby/config"
|
|
emby_movies_directory: "{{ movies_root }}"
|
|
emby_tv_directory: "{{ tv_root }}"
|
|
|
|
# If you're paranoid, set permissions to "ro" so Emby won't ever be able to
|
|
# delete your files
|
|
emby_movies_permissions: "rw"
|
|
emby_tv_permissions: "rw"
|
|
|
|
# uid / gid
|
|
emby_user_id: "0"
|
|
emby_group_id: "0"
|
|
|
|
# network
|
|
emby_port_http: "8096"
|
|
emby_port_https: "8920"
|
|
emby_hostname: "emby"
|
|
|
|
# specs
|
|
emby_memory: 1g
|
|
|
|
# docker
|
|
emby_container_name: emby
|
|
emby_image: emby/embyserver
|
|
emby_image_tag: beta
|
|
|
|
# Device mappings for the docker container. E.g. To enable hardware transcoding:
|
|
# emby_devices:
|
|
# - "/dev/dri:/dev/dri"
|