From 066288887992cf97b33958dfdbde66eecc38a8c9 Mon Sep 17 00:00:00 2001 From: kev Date: Mon, 30 Aug 2021 16:32:37 +0800 Subject: [PATCH] add jellyfin --- README.md | 1 + jellyfin/README.md | 7 +++++++ jellyfin/docker-compose.yml | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 jellyfin/README.md create mode 100644 jellyfin/docker-compose.yml diff --git a/README.md b/README.md index 4d191bf..aacc2a6 100644 --- a/README.md +++ b/README.md @@ -329,6 +329,7 @@ A collection of delicious docker recipes. - [ ] python - [x] gogs/gogs :cn: - [x] haproxy +- [x] jellyfin/jellyfin - [x] jenkins - [x] inbound-agent - [x] jenkins diff --git a/jellyfin/README.md b/jellyfin/README.md new file mode 100644 index 0000000..08fd478 --- /dev/null +++ b/jellyfin/README.md @@ -0,0 +1,7 @@ +jellyfin +======== + +[Jellyfin][1] is a Free Software Media System that puts you in control of +managing and streaming your media. + +[1]: https://jellyfin.org/ diff --git a/jellyfin/docker-compose.yml b/jellyfin/docker-compose.yml new file mode 100644 index 0000000..22cb042 --- /dev/null +++ b/jellyfin/docker-compose.yml @@ -0,0 +1,13 @@ +version: "3.8" +services: + jellyfin: + image: jellyfin/jellyfin + container_name: jellyfin + volumes: + - ./data/config:/config + - ./data/cache:/cache + - ./data/media:/media + - ./data/media2:/media2:ro + user: 1000:1000 + network_mode: host + restart: unless-stopped