mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
9
jellyfin/.env
Normal file
9
jellyfin/.env
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Environment file for docker-compose.yaml
|
||||
# Generate new passwords with:
|
||||
# openssl rand -hex 32
|
||||
|
||||
# Fill in registry
|
||||
REGISTRY=
|
||||
|
||||
# Jellyfin port
|
||||
JELLYFIN_PORT=4200
|
||||
26
jellyfin/docker-compose.yaml
Normal file
26
jellyfin/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
services:
|
||||
|
||||
jellyfin:
|
||||
image: ${REGISTRY}/jellyfin
|
||||
container_name: jellyfin
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${JELLYFIN_PORT:-8096}:8096/tcp
|
||||
user: 1000:984
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./cache:/cache
|
||||
deploy:
|
||||
resources:
|
||||
reservations:
|
||||
devices:
|
||||
- driver: nvidia
|
||||
count: all
|
||||
capabilities:
|
||||
- gpu
|
||||
networks:
|
||||
- jellyfin
|
||||
|
||||
networks:
|
||||
jellyfin:
|
||||
external: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue