Initial commit
This commit is contained in:
commit
ed96355a70
31 changed files with 6683 additions and 0 deletions
34
docker-compose.override.yml.sample
Normal file
34
docker-compose.override.yml.sample
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Sample override file - Copy to docker-compose.override.yml and adjust as needed
|
||||
services:
|
||||
jellyfin:
|
||||
ports:
|
||||
- "${JELLYFIN_PORT_HTTP:-8096}:8096"
|
||||
- "${JELLYFIN_PORT_HTTPS:-8920}:8920"
|
||||
- "7359:7359/udp"
|
||||
# DLNA port (1900) removed via override
|
||||
volumes:
|
||||
# Mount your media volume - adjust source as needed
|
||||
- volumes_videos:/media:ro
|
||||
- volumes_music:/music:ro
|
||||
- volumes_photos:/photos:ro
|
||||
- volumes_tv:/tv:ro
|
||||
- volumes_movies:/movies:ro
|
||||
#
|
||||
# Optional - extra fonts for subtitle burn-in
|
||||
# Uncomment and adjust source path as needed
|
||||
#- type: bind
|
||||
# source: /usr/share/fonts
|
||||
# target: /usr/local/share/fonts/custom
|
||||
# read_only: true
|
||||
networks:
|
||||
- MyNetwork
|
||||
|
||||
volumes:
|
||||
# External volume for Video files
|
||||
volumes_videos:
|
||||
external: true
|
||||
|
||||
networks:
|
||||
# Network for reverse proxy
|
||||
MyNetwork:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue