Add owncloud

This commit is contained in:
Jean Froment 2017-11-22 16:32:56 +01:00
parent 94a97d43d0
commit f198af2db5
3 changed files with 26 additions and 0 deletions

View File

@ -47,6 +47,16 @@ http {
}
}
server {
include common.conf;
server_name ~^(owncloud)(\.\w+)+$;
location / {
set $deluge http://owncloud:80;
proxy_pass $owncloud;
}
}
server {
include common.conf;
server_name ~^(explore)(\.\w+)+$;

View File

@ -1,6 +1,7 @@
USERNAME=username
PASSWORD=h4ckMePleAse
USE_SSL=true
MYSQL_ROOT_PASSWORD=h4ckMePleAse
# For Plex Pass download only
PLEX_EMAIL=

View File

@ -52,6 +52,21 @@ services:
env_file:
- config
owncloud:
image: owncloud:latest
restart: always
volumes:
- torrents:/var/www/html/data
- config/owncloud:/var/www/html/config
networks:
- main
mysql:
image: mariadb:latest
restart: always
env_file:
- config
plex:
image: fromenje/seedbox:plex
build: Dockerfiles/plex