Initial Jellyfin media server deployment

This commit is contained in:
2026-04-11 11:12:01 -04:00
commit bd12fd2b54
3 changed files with 48 additions and 0 deletions

12
LICENSE Normal file
View File

@@ -0,0 +1,12 @@
Copyright (C) 2026 by Kris Lamoureux <kris@lamoureux.io>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

26
README.md Normal file
View File

@@ -0,0 +1,26 @@
# Jellyfin Deployment
Jellyfin is a free, self-hosted media server.
## Variables
### Container Settings
- `IMAGE`: Docker image (default: `docker.io/jellyfin/jellyfin`).
- `VERSION`: Image tag (required, no default).
- `NAME`: Container name (default: `jellyfin`).
### Volumes
- `CONFIG`: Path to the config directory on the host (required, no default).
- `CACHE`: Path to the cache directory on the host (required, no default).
- `MEDIA`: Path to your media library on the host (required, no default).
### Network
- `ENDPOINT`: Address and port binding (default: `127.0.0.1:8096`).
## License
This project is released under the 0BSD license, which allows for unrestricted
use, modification, and distribution.

10
docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
services:
jellyfin:
image: ${IMAGE:-docker.io/jellyfin/jellyfin}:${VERSION:?}
container_name: ${NAME:-jellyfin}
ports:
- ${ENDPOINT:-127.0.0.1:8096}:8096
volumes:
- ${CONFIG:?}:/config:Z
- ${CACHE:?}:/cache:Z
- ${MEDIA:?}:/media:ro,Z