Updates docker-compose.yml from traefik v1 to v2

This commit is contained in:
Joakim Pettersvold 2019-11-09 20:54:01 +00:00
parent c81c711728
commit d48badd62f
1 changed files with 14 additions and 16 deletions

View File

@ -47,14 +47,13 @@ services:
- ICECAST_PASSWORD=Bk3H7UM8 - ICECAST_PASSWORD=Bk3H7UM8
- ICECAST_RELAY_PASSWORD=hackme - ICECAST_RELAY_PASSWORD=hackme
labels: labels:
- traefik.enable=true - "traefik.enable=true"
- traefik.frontend.rule=Host:icecast.radio.dodsorf.as - "traefik.http.routers.radio-iceast-http.rule="Host('iceast.radio.dodsorf.as')"
- traefik.port=8000 - "traefik.http.services.radio-icecast.loadbalancer.server.port=8000"
- traefik.backend=icecast - "traefik.http.routers.radio-icecast-http.middlewares=redirect@file"
- traefik.domain=dodsorf.as - "traefik.http.routers.radio-icecast-http.entrypoints=web"
- traefik.docker.network=reverse - "traefik.http.routers.radio-icecast-https.entrypoints=websecure"
- traefik.frontend.headers.SSLRedirect=true - "traefik.http.routers.radio-icecast-https.tls.certresolver=normal"
- traefik.frontend.entryPoints=http,https
networks: networks:
- reverse - reverse
- default - default
@ -68,14 +67,13 @@ services:
volumes: volumes:
- ./state/playlists:/playlists - ./state/playlists:/playlists
labels: labels:
- traefik.enable=true - "traefik.enable=true"
- traefik.frontend.rule=Host:radio.dodsorf.as - "traefik.http.routers.radio-web-http.rule="Host('radio.dodsorf.as')"
- traefik.port=80 - "traefik.http.services.radio-web.loadbalancer.server.port=80"
- traefik.backend=webradio - "traefik.http.routers.radio-web-http.middlewares=redirect@file"
- traefik.domain=dodsorf.as - "traefik.http.routers.radio-web-http.entrypoints=web"
- traefik.docker.network=reverse - "traefik.http.routers.radio-web-https.entrypoints=websecure"
- traefik.frontend.headers.SSLRedirect=true - "traefik.http.routers.radio-web-https.tls.certresolver=normal"
- traefik.frontend.entryPoints=http,https
networks: networks:
- reverse - reverse
- default - default