mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
21 lines
394 B
YAML
21 lines
394 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
|