Add owncloud
This commit is contained in:
parent
94a97d43d0
commit
f198af2db5
|
@ -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+)+$;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
USERNAME=username
|
||||
PASSWORD=h4ckMePleAse
|
||||
USE_SSL=true
|
||||
MYSQL_ROOT_PASSWORD=h4ckMePleAse
|
||||
|
||||
# For Plex Pass download only
|
||||
PLEX_EMAIL=
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue