Add docker-compose.yaml
This commit is contained in:
92
docker-compose.yaml
Normal file
92
docker-compose.yaml
Normal file
@@ -0,0 +1,92 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
plex:
|
||||
image: linuxserver/plex:latest
|
||||
container_name: plex
|
||||
network_mode: host
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- VERSION=docker
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
volumes:
|
||||
- ./plex/config:/config
|
||||
- ./plex/tv:/tv
|
||||
- ./plex/movies:/movies
|
||||
- ./plex/transcode:/transcode
|
||||
restart: unless-stopped
|
||||
|
||||
radarr:
|
||||
image: linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
ports:
|
||||
- 7878:7878
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
volumes:
|
||||
- ./radarr/config:/config
|
||||
- ./plex/movies:/movies
|
||||
- ./qbittorrent/downloads:/downloads
|
||||
restart: unless-stopped
|
||||
|
||||
sonarr:
|
||||
image: linuxserver/sonarr:latest
|
||||
container_name: sonarr
|
||||
ports:
|
||||
- 8989:8989
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
volumes:
|
||||
- ./sonarr/config:/config
|
||||
- ./plex/tv:/tv
|
||||
- ./qbittorrent/downloads:/downloads
|
||||
restart: unless-stopped
|
||||
|
||||
overseerr:
|
||||
image: sctx/overseerr:latest
|
||||
container_name: overseerr
|
||||
ports:
|
||||
- 5055:5055
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
- LOG_LEVEL=info
|
||||
volumes:
|
||||
- ./overseerr/config:/app/config
|
||||
restart: unless-stopped
|
||||
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent:latest
|
||||
container_name: qbittorrent
|
||||
ports:
|
||||
- 8080:8080 # Web UI
|
||||
- 6881:6881 # Torrent port
|
||||
- 6881:6881/udp
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
- WEBUI_PORT=8080
|
||||
volumes:
|
||||
- ./qbittorrent/config:/config
|
||||
- ./qbittorrent/downloads:/downloads
|
||||
restart: unless-stopped
|
||||
|
||||
jackett:
|
||||
image: linuxserver/jackett:latest
|
||||
container_name: jackett
|
||||
ports:
|
||||
- 9117:9117
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/New_York # Change to your time zone
|
||||
volumes:
|
||||
- ./jackett/config:/config
|
||||
- ./qbittorrent/downloads:/downloads
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user