mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
init all current docker compose files
This commit is contained in:
parent
3694b45ece
commit
adc70638d1
12 changed files with 432 additions and 0 deletions
52
jellyfin/docker-compose.yaml
Normal file
52
jellyfin/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
services:
|
||||
jellyfin:
|
||||
image: jellyfin/jellyfin
|
||||
container_name: jellyfin
|
||||
ports:
|
||||
- "8096:8096"
|
||||
- "8920:8920"
|
||||
volumes:
|
||||
- jellyfin_config:/config
|
||||
- jellyfin_cache:/cache
|
||||
- jellyfin_media:/media
|
||||
restart: unless-stopped
|
||||
|
||||
sonarr:
|
||||
image: linuxserver/sonarr
|
||||
container_name: sonarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
ports:
|
||||
- "8989:8989"
|
||||
volumes:
|
||||
- sonarr_config:/config
|
||||
- jellyfin_download:/downloads
|
||||
- jellyfin_media:/media
|
||||
restart: unless-stopped
|
||||
|
||||
radarr:
|
||||
image: linuxserver/radarr
|
||||
container_name: radarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Berlin
|
||||
ports:
|
||||
- "7878:7878"
|
||||
volumes:
|
||||
- radarr_config:/config
|
||||
- jellyfin_download:/downloads
|
||||
- jellyfin_media:/media
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
jellyfin_config:
|
||||
jellyfin_cache:
|
||||
sonarr_config:
|
||||
radarr_config:
|
||||
jellyfin_media:
|
||||
external: true
|
||||
jellyfin_download:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue