From 4d2e14187ac4ec09af71977b1b6bf2029af07a1d Mon Sep 17 00:00:00 2001 From: Beda Schmid Date: Wed, 5 Aug 2026 16:14:41 +0000 Subject: [PATCH] Reset history to current sanitized state --- .gitignore | 27 +++++++++++++++++++++++++++ LICENSE | 24 ++++++++++++++++++++++++ README.md | 25 +++++++++++++++++++++++++ docker-compose.yml | 26 ++++++++++++++++++++++++++ 4 files changed, 102 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 docker-compose.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..28ec0bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# ---> VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + + +# BEGIN reset-history environment exclusions +.env +.env.* +*.env +*.env.* +!.env.example +!.env.*.example +!*.env.example +!*.env.*.example +config/ +cache/ +# END reset-history environment exclusions diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..efb9808 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/README.md b/README.md new file mode 100644 index 0000000..5c2a194 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Jellyfin + +Self-hosted media server for organizing and streaming movies, television, music, and other media. + +## Deployment layout + +- **Compose:** `/srv/docker/jellyfin/docker-compose.yml` +- **Static configuration/source:** no additional static configuration or build source +- **Non-secret environment:** none; there is no project-local `.env` +- **Secrets:** none; credentials and authentication state created through Jellyfin are application-managed state +- **NVMe application state:** `/srv/appdata/jellyfin/config` and `/srv/appdata/jellyfin/cache` +- **Bulk HDD data:** `/data/Data1/jellyfin` +- **Other mounts:** `/dev/dri` is passed through for hardware acceleration, with supplemental host group IDs +`44` and `993` + +Secrets are never committed to this repository. No separate deployment secret +file is declared; sensitive application-managed state is stored under +`/srv/appdata/jellyfin/config`. + +## Dependencies and recovery + +- **Networks/dependencies:** Jellyfin uses the external `npm_proxy` network at `192.168.97.10` and the host `/dev/dri` device for hardware acceleration; no dependent services are declared +- **Back up:** `/srv/appdata/jellyfin/config` and the separately managed media under `/data/Data1/jellyfin` +- **Re-creatable:** the Jellyfin container and `/srv/appdata/jellyfin/cache` + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..7061dda --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,26 @@ +services: + jellyfin: + image: jellyfin/jellyfin:latest + container_name: jellyfin + user: "1000:1000" + shm_size: "2gb" + restart: unless-stopped +# ports: + # - "8096:8096" + # - "8920:8920" + volumes: + - /srv/appdata/jellyfin/config:/config + - /srv/appdata/jellyfin/cache:/cache + - /data/Data1/jellyfin:/media + devices: + - /dev/dri:/dev/dri + group_add: + - "44" + - "993" + networks: + npm_proxy: + ipv4_address: 192.168.97.10 + +networks: + npm_proxy: + external: true