mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
28 lines
532 B
YAML
28 lines
532 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
# Jellyfin
|
|
jellyfin:
|
|
image: jellyfin/jellyfin:latest
|
|
container_name: jellyfin
|
|
profiles:
|
|
- jellyfin
|
|
restart: on-failure
|
|
depends_on:
|
|
- caddy
|
|
volumes:
|
|
- jellyfin_config:/config
|
|
- jellyfin_data:/movies:ro
|
|
- jellyfin_cache:/cache
|
|
networks:
|
|
- infra-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
volumes:
|
|
jellyfin_config:
|
|
name: jellyfin_config
|
|
jellyfin_data:
|
|
name: jellyfin_data
|
|
jellyfin_cache:
|
|
name: jellyfin_cache |