Initial checkin

This commit is contained in:
Radar231 2021-08-01 18:21:23 -04:00
commit e9e2f2c898
1 changed files with 18 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@ -0,0 +1,18 @@
---
version: "3.5"
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1000:1000
network_mode: "host"
volumes:
- /containers/jellyfin/config:/config
- /containers/jellyfin/cache:/cache
- /Media:/media:ro
restart: "unless-stopped"
# Optional - alternative address used for autodiscovery
#environment:
# - JELLYFIN_PublishedServerUrl=http://example.com
# EOF