Add docker-compose file for basic configuration

This commit is contained in:
Tanguy Herbron 2021-04-30 14:27:18 +02:00
parent fa84e2e833
commit da0dff9f1e

20
docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
version: "3.2"
services:
jellyfin:
image: ghcr.io/linuxserver/jellyfin
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Copenhagen
volumes:
- /media/alpha/jellyfin/config:/config
- /media/alpha/jellyfin/tvshows:/data/tvshows
- /media/alpha/jellyfin/movies:/data/movies
ports:
- 8096:8096
- 8920:8920
- 7359:7359/udp
- 1900:1900/udp
restart: unless-stopped