Unverified Commit 006d014a authored by Tom Moulard's avatar Tom Moulard Committed by GitHub
Browse files

Merge pull request #13 from tomMoulard/traefik-v2

Traefik: Updating to traefik v2.x
parents c8b0bcee 29ee882f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -55,10 +55,10 @@ jobs:
        run: docker-compose -f docker-compose.yml -f ${SERVICE}/docker-compose.${SERVICE}.yml ps
      - name: Check health
        run: docker-compose -f docker-compose.yml -f ${SERVICE}/docker-compose.${SERVICE}.yml ps | grep "Up (healthy)"
  Health-checks-blog:
  Health-checks-hugo:
    runs-on: ubuntu-latest
    env:
      SERVICE: blog
      SERVICE: hugo
    steps:
      - uses: actions/checkout@v2
      - name: Caching
+3 −2
Original line number Diff line number Diff line
@@ -8,5 +8,6 @@ services:
    restart: always
    labels:
      - 'traefik.enable=true'
      - 'traefik.frontend.rule=Host:arachni.${SITE}'
      - 'traefik.port=9292'
      - 'traefik.http.routers.arachni.rule=Host(`arachni.${SITE}`)'
      - 'traefik.http.services.arachni.loadbalancer.server.port=9292'
      - 'traefik.http.routers.arachni.middlewares=basic_auth@docker'

bazarr/.gitignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
config/
movies/
tv/
 No newline at end of file
+3 −3
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@ services:
    restart: always
    labels:
      - 'traefik.enable=true'
      - 'traefik.frontend.rule=Host:bazarr.${SITE}'
      - 'traefik.port=8080'
      - 'traefik.frontend.auth.basic.users=${USERS}'
      - 'traefik.http.routers.bazarr.rule=Host(`bazarr.${SITE}`)'
      - 'traefik.http.services.bazarr.loadbalancer.server.port=8080'
      - 'traefik.http.routers.bazarr.middlewares=basic_auth@docker'
+2 −2
Original line number Diff line number Diff line
@@ -14,5 +14,5 @@ services:
    restart: always
    labels:
      - 'traefik.enable=true'
      - 'traefik.frontend.rule=Host:bitwarden.${SITE}'
      - 'traefik.port=8080'
      - 'traefik.http.routers.bitwarden.rule=Host(`bitwarden.${SITE}`)'
      - 'traefik.http.services.bitwarden.loadbalancer.server.port=8080'
Loading