Add Organizr

This commit is contained in:
Jean Froment 2017-12-08 11:52:15 +01:00
parent f20333a5c2
commit f782c919c6
3 changed files with 45 additions and 11 deletions

View File

@ -37,6 +37,16 @@ http {
# Use builtin Docker DNS as resolver for services
resolver 127.0.0.11;
server {
include common.conf;
server_name ~^(organizr)(\.\w+)+$;
location / {
set $organizr http://organizr:80;
proxy_pass $organizr;
}
}
server {
include common.conf;
server_name ~^(deluge)(\.\w+)+$;
@ -78,6 +88,16 @@ http {
}
}
server {
include common.conf;
server_name ~^(webtools)(\.\w+)+$;
location / {
set $webtools http://plex:33443;
proxy_pass $webtools;
}
}
server {
include common.conf;
server_name ~^(sonarr)(\.\w+)+$;

View File

@ -14,6 +14,8 @@ Included services are:
- plex
- h5ai (service accessible via `explore.hostname`)
- radarr
- ownCloud (still in testing phase)
- organizr
The front-end reverse proxy routes based on the lowest level subdomain (e.g.
`deluge.example.com` would route to deluge). Since this is how the router

View File

@ -89,17 +89,29 @@ services:
- TZ=Europe/Paris
radarr:
image: fromenje/seedbox:radarr
build: Dockerfiles/radarr
restart: always
networks:
image: fromenje/seedbox:radarr
build: Dockerfiles/radarr
restart: always
networks:
- main
volumes:
volumes:
- config:/config
- torrents:/torrents
env_file:
- config
environment:
- PGID=0
- PUID=0
- TZ=Europe/Paris
env_file:
- config
environment:
- PGID=0
- PUID=0
- TZ=Europe/Paris
organizr:
image: lsiocommunity/organizr
restart: always
networks:
- main
volumes:
- config:/config
environment:
- PGID=0
- PUID=0
- TZ=Europe/Paris