infra/compose/media.yml

88 lines
1.8 KiB
YAML
Raw Normal View History

2024-08-12 15:30:20 -06:00
# SAMPLE ENV
# ROOT_PATH=/mnt/plex
2024-07-30 16:05:37 -06:00
services:
2024-09-01 01:16:40 -06:00
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
2024-09-01 01:39:58 -06:00
pull_policy: always
2024-09-01 01:16:40 -06:00
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
2024-09-21 21:27:38 -06:00
- ${ROOT_PATH}/config/jellyfin:/config
2024-09-01 01:16:40 -06:00
- ${ROOT_PATH}/data/media:/media
ports:
- 8096:8096
restart: unless-stopped
2024-07-30 16:05:37 -06:00
2024-09-21 02:33:36 -06:00
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
environment:
- LOG_LEVEL=debug
- TZ=Etc/UTC
- PORT=5055
ports:
- 5055:5055
volumes:
2024-09-21 21:27:38 -06:00
- ${ROOT_PATH}/config/jellyseerr:/app/config
2024-09-21 02:33:36 -06:00
restart: unless-stopped
2024-07-30 16:05:37 -06:00
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
2024-09-01 01:39:58 -06:00
pull_policy: always
2024-07-30 16:05:37 -06:00
restart: always
ports:
2024-09-21 21:21:50 -06:00
- "8989:8989/tcp"
2024-07-30 16:05:37 -06:00
environment:
- PUID=1000
- PGID=1000
volumes:
2024-09-21 21:27:38 -06:00
- ${ROOT_PATH}/config/sonarr:/config
2024-07-30 16:05:37 -06:00
- ${ROOT_PATH}/data:/data
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radar
2024-09-01 01:39:58 -06:00
pull_policy: always
2024-07-30 16:05:37 -06:00
restart: always
ports:
- "7878:7878/tcp"
environment:
- PUID=1000
- PGID=1000
volumes:
2024-09-21 21:27:38 -06:00
- ${ROOT_PATH}/config/radarr:/config
2024-07-30 16:05:37 -06:00
- ${ROOT_PATH}/data:/data
2024-11-18 14:29:50 -06:00
kavita:
image: lscr.io/linuxserver/kavita:latest
container_name: kavita
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ${ROOT_PATH}/config/kavita:/config
- ${ROOT_PATH}/data:/data
ports:
- 5000:5000
restart: unless-stopped
2024-07-30 16:05:37 -06:00
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
container_name: sabnzbd
2024-09-01 01:39:58 -06:00
pull_policy: always
2024-07-30 16:05:37 -06:00
restart: always
ports:
- "8080:8080/tcp"
environment:
- PUID=1000
- PGID=1000
volumes:
2024-09-21 21:27:38 -06:00
- ${ROOT_PATH}/config/sabnzbd:/config
2024-07-30 16:05:37 -06:00
- ${ROOT_PATH}/data:/data