diff --git a/ci/files/traefik/docker-compose.yaml b/ci/files/traefik/docker-compose.yaml index 9348aad..29999cb 100644 --- a/ci/files/traefik/docker-compose.yaml +++ b/ci/files/traefik/docker-compose.yaml @@ -1,9 +1,9 @@ -version: '3.0' +version: "3.0" services: reverse-proxy: # The official v2 Traefik docker image - image: traefik:{{ treafik_tag }} + image: traefik:latest # Enables the web UI and tells Traefik to listen to docker command: --api.insecure=true --providers.docker ports: @@ -12,5 +12,5 @@ services: # The Web UI (enabled by --api.insecure=true) - "80:8080" volumes: - # So that Traefik can listen to the Docker events - - /var/run/docker.sock:/var/run/docker.sock + # So that Traefik can listen to the Docker events + - /var/run/docker.sock:/var/run/docker.sock diff --git a/ci/group_vars/prod/main.yaml b/ci/group_vars/prod/main.yaml index b35898a..40791cd 100644 --- a/ci/group_vars/prod/main.yaml +++ b/ci/group_vars/prod/main.yaml @@ -1,9 +1,6 @@ # Environment - is it production, test or local development? env: prod -# Traefik version -treafik_tag: v3.2.3 - pywb_traefik_configuration: "traefik.http.routers.pywb.rule=Host(`pywb.webarchiv.cz`)" # Directory where pywb is installed diff --git a/ci/group_vars/test/main.yaml b/ci/group_vars/test/main.yaml index b1a07b9..af33754 100644 --- a/ci/group_vars/test/main.yaml +++ b/ci/group_vars/test/main.yaml @@ -1,9 +1,6 @@ # Environment - is it production, test or local development? env: test -# Traefik version, be aware production is using v3.2.3. -treafik_tag: latest - pywb_traefik_configuration: "traefik.http.routers.pywb.rule=Host(`localhost`) || Host(`10.3.0.21`) || Host(`test.pywb.webarchiv.cz`)" # Directory where pywb is installed, be aware production is using hardcoded pywb tag.