Add Organizr
This commit is contained in:
parent
f20333a5c2
commit
f782c919c6
|
@ -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+)+$;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -103,3 +103,15 @@ services:
|
|||
- 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
|
||||
|
|
Loading…
Reference in New Issue