Skip to content

Instantly share code, notes, and snippets.

@mdasberg
Created March 18, 2019 08:14
Show Gist options
  • Save mdasberg/1cf7fc25c76b6ed1854d4789c4666b66 to your computer and use it in GitHub Desktop.
Save mdasberg/1cf7fc25c76b6ed1854d4789c4666b66 to your computer and use it in GitHub Desktop.
mediaserver - docker-compose
version: '3'
services:
sonarr:
container_name: orion_sonarr
image: linuxserver/sonarr
restart: always
ports:
- 81:8989
volumes:
- /opt/mediacenter/config/sonar:/config
- /srv/dev-disk-by-label-media/media/series:/tv
- /opt/mediacenter/downloads/complete:/downloads
environment:
TZ: 'Europe/Amsterdam'
PUID: 1000
PGID: 1000
networks:
- mediacenter
sabnzbd:
container_name: orion_sabnzbd
image: linuxserver/sabnzbd
restart: always
ports:
- 82:8080
volumes:
- /opt/mediacenter/config/sabnzbd:/config
- /opt/mediacenter/downloads/complete:/downloads
- /opt/mediacenter/downloads/incomplete:/incomplete-downloads
environment:
TZ: 'Europe/Amsterdam'
PUID: 1000
PGID: 1000
networks:
- mediacenter
plex:
container_name: orion_plex
image: linuxserver/plex
restart: always
ports:
- 83:32400
volumes:
- /opt/mediacenter/config/plex:/config
- /srv/dev-disk-by-label-media/media/series:/data/series
environment:
TZ: 'Europe/Amsterdam'
PUID: 1000
PGID: 1000
network_mode: host
networks:
mediacenter:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment