Files
docker-compose-cookbooks/jellyfin/docker-compose.yml
T
nick 70bfb9a907 Minor Update
* updated readme (needs more work)
* heimdall is great
* added jellyfin
2024-01-11 22:28:50 -08:00

42 lines
1.3 KiB
YAML

---
version: "3"
###########################################################################################################################
# Jellyfin
#
# LINKS
# * [DockerHub](https://hub.docker.com/_/mariadb/)
# * [Docs](https://jellyfin.org/docs/)
#
# Notes:
# Static Ports
# * 8096/tcp is used by default for HTTP traffic. You can change this in the dashboard.
# * 8920/tcp is used by default for HTTPS traffic. You can change this in the dashboard.
# * 1900/udp is used for service auto-discovery. This is not configurable.
# * 7359/udp is also used for auto-discovery. This is not configurable.
#
# SAMPLE ENV
# <blank>
###########################################################################################################################
services:
jellyfin:
image: jellyfin/jellyfin:latest
restart: always
volumes:
- ./data/config:/config
- ./data/cache:/cache
- ./data/content/media:/media
- ./data/content/books:/books
- ./data/content/movies:/movies
- ./data/content/music:/music
- ./data/content/musicvideos:/musicvideos
- ./data/content/photos:/photos
- ./data/content/shows:/shows
ports:
- "8096:8096"
restart: unless-stopped
environment:
- JELLYFIN_PublishedServerUrl=http://localhost:8000