Skip to content

Commit

Permalink
Merge pull request #31 from Deiteq/patch-8
Browse files Browse the repository at this point in the history
Patch 8 - awesome!!!!
  • Loading branch information
Admin9705 authored Oct 9, 2017
2 parents 9ad416c + 818b619 commit 646f224
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions 2 - Server Guide/11 - YML Script
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
# Portainer: http://ipv4address/domain:9000
# PlexPy: http://ipv4address/domain:8181
# Muximux: http://ipv4address/domain:8015
# Emby: http://ipv4address/domain:8096
#
# Whenever you need to update Emby just use the following without '#' :-
# sudo docker exec -ti emby update
#
################# Starting Notes ################# END

################# YML Writeup ################# Start
Expand Down Expand Up @@ -44,8 +49,8 @@ services:
muximux:
image: linuxserver/muximux
container_name: muximux
# If you want your ip or domain to load this directly, change the 8005 to 80 (80:80).
# If you plan on creating a web-interface; leave as 8005; port 80 is reserved for your website
# If you want your ip or domain to load this directly, change the 8015 to 80 (80:80).
# If you plan on creating a web-interface; leave as 8015; port 80 is reserved for your website
ports:
- 8015:80
volumes:
Expand All @@ -56,6 +61,26 @@ services:
- PGID=1001
restart:
always

emby:
image: emby/embyserver
container_name: emby
# net: host
ports:
- 8096:8096
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/appdata/embyserver:/config
- /mnt:/shows
- /mnt/rclone-union/:/media
environment:
- VIRTUAL_PORT=8096
- VIRTUAL_HOST=emby.htpc
- AUTO_UPDATES_ON=true
- PUID=0
- PGID=0
restart: always

################# YML Writeup ################# END

################# Final Notes ################# Start
Expand All @@ -64,5 +89,9 @@ services:
# 1st Time - Type: nano /opt/docker-compose.yml (then copy this entire file into it)
# Execute YML Script: cd /opt && sudo docker-compose -f docker-compose.yml up -d
# Future Edits: cd /opt && sudo rm -r docker-compose.yml && sudo nano docker-compose.yml (then copy this entire file into it)
# Execute YML Script: cd /opt && sudo docker-compose -f docker-compose.yml up -d
# Execute YML Script: cd /opt && sudo docker-compose -f docker-compose.yml up -d
#
# Whenever you need to update Emby just use the following without '#' :-
# sudo docker exec -ti emby update
#
################# Final Notes ################# END

0 comments on commit 646f224

Please sign in to comment.