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:
|
|
|
|
- ${ROOT_PATH}/config:/config
|
|
|
|
- ${ROOT_PATH}/data/media:/media
|
|
|
|
ports:
|
|
|
|
- 8096:8096
|
2024-09-17 01:08:33 -06:00
|
|
|
networks:
|
|
|
|
- proxy
|
2024-09-01 01:16:40 -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:
|
|
|
|
- ${ROOT_PATH}/config:/config
|
|
|
|
- ${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:
|
|
|
|
- ${ROOT_PATH}/config:/config
|
|
|
|
- ${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:
|
|
|
|
- ${ROOT_PATH}/config:/config
|
|
|
|
- ${ROOT_PATH}/data:/data
|
2024-09-17 01:08:33 -06:00
|
|
|
|
|
|
|
networks:
|
|
|
|
proxy_default:
|
|
|
|
name: proxy
|
|
|
|
external: true
|