Move to traefik proxy

This commit is contained in:
Marko Korhonen 2020-02-13 21:24:50 +02:00
parent a19656cb59
commit 029eceb92e
5 changed files with 156 additions and 13 deletions

View file

@ -6,10 +6,32 @@ services:
environment:
- TZ=Europe/Helsinki
user: 1001:985
network_mode: 'host'
ports:
- '8096:8096'
networks:
- proxy
restart: always
volumes:
- /docker/jellyfin/config:/config
- /docker/jellyfin/cache:/cache
- /mnt/Storage/Media:/media
- /etc/localtime:/etc/localtime:ro
labels:
- 'traefik.enable=true'
- 'traefik.http.routers.jellyfin-redirect.entrypoints=http'
- 'traefik.http.routers.jellyfin-redirect.rule=Host(`jellyfin.reekynet.com`)'
- 'traefik.http.middlewares.http2https.redirectscheme.scheme=https'
- 'traefik.http.routers.jellyfin-redirect.middlewares=http2https'
- 'traefik.http.routers.jellyfin.entrypoints=https'
- 'traefik.http.routers.jellyfin.rule=Host(`jellyfin.reekynet.com`)'
- 'traefik.http.routers.jellyfin.tls=true'
- 'traefik.http.routers.jellyfin.tls.certresolver=http'
- 'traefik.http.routers.jellyfin.service=jellyfin'
- 'traefik.docker.network=proxy'
- 'traefik.http.services.jellyfin.loadbalancer.server.port=8096'
networks:
proxy:
external: true