Skip to content

Instantly share code, notes, and snippets.

@jamesottaway
Last active July 26, 2019 22:58
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jamesottaway/2e711adad635382488ff96ac91ee1331 to your computer and use it in GitHub Desktop.
Save jamesottaway/2e711adad635382488ff96ac91ee1331 to your computer and use it in GitHub Desktop.
version: '2.0'
services:
couchpotato:
image: linuxserver/couchpotato
ports:
- 5050:5050
volumes:
- couchpotato:/config:rw
- movies:/movies:rw
- downloads:/downloads:rw
nzbget:
image: linuxserver/nzbget
ports:
- 6789:6789
volumes:
- nzbget:/config:rw
- downloads:/downloads:rw
plex:
image: plexinc/pms-docker
environment:
- TZ=Australia/Brisbane
ports:
- 32400:32400/tcp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
volumes:
- /home/nuc/plex:/config:rw
- tv:/media/tv:rw
- movies:/media/movies:rw
- photos:/media/photos:rw
sonarr:
image: linuxserver/sonarr
ports:
- 8989:8989
volumes:
- sonarr:/config:rw
- tv:/media/tv:rw
- downloads:/downloads:rw
- /dev/rtc:/dev/rtc:ro
volumes:
couchpotato:
driver_opts:
type: cifs
device: //192.168.1.8/home/couchpotato
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
downloads:
driver_opts:
type: cifs
device: //192.168.1.8/home/downloads
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
movies:
driver_opts:
type: cifs
device: //192.168.1.8/Movies
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
nzbget:
driver_opts:
type: cifs
device: //192.168.1.8/home/nzbget
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
photos:
driver_opts:
type: cifs
device: //192.168.1.8/Photos
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
sonarr:
driver_opts:
type: cifs
device: //192.168.1.8/home/sonarr
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
tv:
driver_opts:
type: cifs
device: //192.168.1.8/TV
o: username=nuc,password=${DISKSTATION_PASSWORD},vers=3.0,uid=911,gid=911
networks:
default:
ipam:
config:
- gateway: 172.10.1.1
subnet: 172.10.0.0/16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment