Created
March 18, 2019 08:14
-
-
Save mdasberg/1cf7fc25c76b6ed1854d4789c4666b66 to your computer and use it in GitHub Desktop.
mediaserver - docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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