Skip to content

Instantly share code, notes, and snippets.

@refo
Created May 17, 2019 05:01
Show Gist options
  • Save refo/6c9b0b1f96ccfd091add4322e6c9e9ec to your computer and use it in GitHub Desktop.
Save refo/6c9b0b1f96ccfd091add4322e6c9e9ec to your computer and use it in GitHub Desktop.
Plexpi, Raspberry pi,plex sonarr, deluge and friends
version: "2"
services:
# https://hub.docker.com/r/linuxserver/plex
plex:
image: linuxserver/plex
container_name: plexpi
network_mode: host
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
volumes:
- ./disk/media/tvshows:/data/tvshows
- ./disk/media/movies:/data/movies
- ./disk/config/plex/transcode:/transcode
- ./disk/config/plex/config:/config
restart: unless-stopped
# https://hub.docker.com/r/linuxserver/sonarr
sonarr:
image: linuxserver/sonarr
container_name: sonarr
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Istanbul
volumes:
- ./disk/config/sonarr:/config
- ./disk/downloads:/downloads
- ./disk/media/tvshows:/tv
# ports:
# - 8989:8989
restart: unless-stopped
radarr:
image: linuxserver/radarr
container_name: radarr
network_mode: host
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Istanbul
volumes:
- ./disk/config/radarr:/config
- ./disk/downloads:/downloads
- ./disk/media/movies:/movies
# ports:
# - 7878:7878
restart: unless-stopped
# https://hub.docker.com/r/linuxserver/deluge
deluge:
image: linuxserver/deluge
container_name: deluge
network_mode: host
environment:
- PUID=1000
- PGID=1000
#- UMASK_SET=
- TZ=Europe/Istanbul
volumes:
- ./disk/config/deluge:/config
- ./disk/downloads:/downloads
restart: unless-stopped
# https://hub.docker.com/r/linuxserver/nginx
nginx:
image: linuxserver/nginx
container_name: nginx
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Istanbul
volumes:
- ./nginx:/config/nginx/site-confs
ports:
- 80:80
- 443:443
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment