Add sonarr to traefik
This commit is contained in:
parent
4aaeed4449
commit
db03da2189
|
@ -72,15 +72,15 @@ services:
|
||||||
env_file:
|
env_file:
|
||||||
- config
|
- config
|
||||||
|
|
||||||
owncloud:
|
# owncloud:
|
||||||
image: owncloud:latest
|
# image: owncloud:latest
|
||||||
restart: always
|
# restart: always
|
||||||
volumes:
|
# volumes:
|
||||||
- torrents:/var/www/html/data/admin/files
|
# - torrents:/var/www/html/data/admin/files
|
||||||
networks:
|
# networks:
|
||||||
- main
|
# - main
|
||||||
ports:
|
# ports:
|
||||||
- "7474:80"
|
# - "7474:80"
|
||||||
|
|
||||||
plex:
|
plex:
|
||||||
image: fromenje/seedbox:plex
|
image: fromenje/seedbox:plex
|
||||||
|
@ -101,12 +101,20 @@ services:
|
||||||
build: Dockerfiles/sonarr
|
build: Dockerfiles/sonarr
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- main
|
- web
|
||||||
volumes:
|
volumes:
|
||||||
- config:/config
|
- config:/config
|
||||||
- torrents:/torrents
|
- torrents:/torrents
|
||||||
environment:
|
environment:
|
||||||
|
- PGID=0
|
||||||
|
- PUID=0
|
||||||
- TZ=Europe/Paris
|
- TZ=Europe/Paris
|
||||||
|
labels:
|
||||||
|
- 'traefik.backend=sonarr'
|
||||||
|
- 'traefik.port=8989'
|
||||||
|
- 'traefik.frontend.rule=Host:sonarr.${TRAEFIK_DOMAIN}'
|
||||||
|
- 'traefik.frontend.auth.basic=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||||
|
- 'traefik.enable=true'
|
||||||
|
|
||||||
radarr:
|
radarr:
|
||||||
image: fromenje/seedbox:radarr
|
image: fromenje/seedbox:radarr
|
||||||
|
@ -117,8 +125,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- config:/config
|
- config:/config
|
||||||
- torrents:/torrents
|
- torrents:/torrents
|
||||||
env_file:
|
|
||||||
- config
|
|
||||||
environment:
|
environment:
|
||||||
- PGID=0
|
- PGID=0
|
||||||
- PUID=0
|
- PUID=0
|
||||||
|
@ -130,17 +136,17 @@ services:
|
||||||
- 'traefik.frontend.auth.basic=${HTTP_USER}:${HTTP_PASSWORD}'
|
- 'traefik.frontend.auth.basic=${HTTP_USER}:${HTTP_PASSWORD}'
|
||||||
- 'traefik.enable=true'
|
- 'traefik.enable=true'
|
||||||
|
|
||||||
organizr:
|
# organizr:
|
||||||
image: lsiocommunity/organizr
|
# image: lsiocommunity/organizr
|
||||||
restart: always
|
# restart: always
|
||||||
networks:
|
# networks:
|
||||||
- main
|
# - main
|
||||||
volumes:
|
# volumes:
|
||||||
- config:/config
|
# - config:/config
|
||||||
environment:
|
# environment:
|
||||||
- PGID=33
|
# - PGID=33
|
||||||
- PUID=33
|
# - PUID=33
|
||||||
- TZ=Europe/Paris
|
# - TZ=Europe/Paris
|
||||||
|
|
||||||
portainer:
|
portainer:
|
||||||
image: portainer/portainer
|
image: portainer/portainer
|
||||||
|
|
Loading…
Reference in New Issue