infra/compose/media.yml

74 lines
1.5 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:13:57 -06:00
- ${ROOT_PATH}/config:/config/jellyfin
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:13:57 -06:00
- ${ROOT_PATH}/config:/app/config/jellyseerr
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:
- "8989:7878/tcp"
environment:
- PUID=1000
- PGID=1000
volumes:
2024-09-21 21:13:57 -06:00
- ${ROOT_PATH}/config:/config/sonarr
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:13:57 -06:00
- ${ROOT_PATH}/config:/config/radarr
2024-07-30 16:05:37 -06:00
- ${ROOT_PATH}/data:/data
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:13:57 -06:00
- ${ROOT_PATH}/config:/config/sabnzbd
2024-07-30 16:05:37 -06:00
- ${ROOT_PATH}/data:/data