| 12345678910111213141516171819202122232425262728293031 |
- volumes:
- jellyfin_config:
- name: ${CONTAINER_NAME}_config
- driver: local
- jellyfin_cache:
- name: ${CONTAINER_NAME}_cache
- driver: local
- jellyfin_log:
- name: ${CONTAINER_NAME}_log
- driver: local
- services:
- jellyfin:
- image: jellyfin/jellyfin:latest
- container_name: ${CONTAINER_NAME}
- network_mode: host # Enable DLNA and Wake-on-Lan
- user: 1000:1000
- environment:
- - JELLYFIN_PublishedServerUrl=https://cine.algometic.com
- volumes:
- - jellyfin_config:/config # Configuration directory
- - jellyfin_cache:/cache
- - jellyfin_log:/log
- - ${MOVIES_ROOT}:/media # Media directory
- - ${TV_ROOT}:/media3 # Media directory
- devices:
- - /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
- restart: "no"
|