diff --git a/docs/configuration/entrypoints.md b/docs/configuration/entrypoints.md index 1a01625c4..d37a4695f 100644 --- a/docs/configuration/entrypoints.md +++ b/docs/configuration/entrypoints.md @@ -97,7 +97,7 @@ In compose file the entrypoint syntax is different. Notice how quotes are used: ```yaml traefik: - image: traefik + image: traefik:v1.7 command: - --defaultentrypoints=powpow - "--entryPoints=Name:powpow Address::42 Compress:true" @@ -105,7 +105,7 @@ traefik: or ```yaml traefik: - image: traefik + image: traefik:v1.7 command: --defaultentrypoints=powpow --entryPoints='Name:powpow Address::42 Compress:true' ``` diff --git a/docs/index.md b/docs/index.md index 0894e469a..2eb2fae5d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -77,7 +77,7 @@ version: '3' services: reverse-proxy: - image: traefik # The official Traefik docker image + image: traefik:v1.7 # The official Traefik docker image command: --api --docker # Enables the web UI and tells Traefik to listen to docker ports: - "80:80" # The HTTP port diff --git a/docs/user-guide/cluster-docker-consul.md b/docs/user-guide/cluster-docker-consul.md index 7f1565c30..91e7945a7 100644 --- a/docs/user-guide/cluster-docker-consul.md +++ b/docs/user-guide/cluster-docker-consul.md @@ -91,7 +91,7 @@ To watch docker events, add `--docker.watch`. version: "3" services: traefik: - image: traefik: + image: traefik: command: - "--api" - "--entrypoints=Name:http Address::80 Redirect.EntryPoint:https" @@ -156,7 +156,7 @@ The initializer in a docker-compose file will be: ```yaml traefik_init: - image: traefik: + image: traefik: command: - "storeconfig" - "--api" @@ -177,7 +177,7 @@ And now, the Traefik part will only have the Consul configuration. ```yaml traefik: - image: traefik: + image: traefik: depends_on: - traefik_init - consul @@ -200,7 +200,7 @@ The new configuration will be stored in Consul, and you need to restart the Trae version: "3.4" services: traefik_init: - image: traefik: + image: traefik: command: - "storeconfig" - "--api" @@ -229,7 +229,7 @@ services: depends_on: - consul traefik: - image: traefik: + image: traefik: depends_on: - traefik_init - consul diff --git a/docs/user-guide/docker-and-lets-encrypt.md b/docs/user-guide/docker-and-lets-encrypt.md index c3c873933..9bb7eab5a 100644 --- a/docs/user-guide/docker-and-lets-encrypt.md +++ b/docs/user-guide/docker-and-lets-encrypt.md @@ -50,7 +50,7 @@ version: '2' services: traefik: - image: traefik: + image: traefik: restart: always ports: - 80:80 diff --git a/docs/user-guide/kubernetes.md b/docs/user-guide/kubernetes.md index 3a6475853..b42942e02 100644 --- a/docs/user-guide/kubernetes.md +++ b/docs/user-guide/kubernetes.md @@ -118,7 +118,7 @@ spec: serviceAccountName: traefik-ingress-controller terminationGracePeriodSeconds: 60 containers: - - image: traefik + - image: traefik:v1.7 name: traefik-ingress-lb ports: - name: http @@ -180,7 +180,7 @@ spec: serviceAccountName: traefik-ingress-controller terminationGracePeriodSeconds: 60 containers: - - image: traefik + - image: traefik:v1.7 name: traefik-ingress-lb ports: - name: http diff --git a/docs/user-guide/kv-config.md b/docs/user-guide/kv-config.md index 3e2959163..1f1067725 100644 --- a/docs/user-guide/kv-config.md +++ b/docs/user-guide/kv-config.md @@ -139,7 +139,7 @@ Here is the [docker-compose file](https://docs.docker.com/compose/compose-file/) ```yaml traefik: - image: traefik: + image: traefik: command: --consul --consul.endpoint=127.0.0.1:8500 ports: - "80:80" diff --git a/examples/compose-rancher.yml b/examples/compose-rancher.yml index 06352a651..9d0a2eb15 100644 --- a/examples/compose-rancher.yml +++ b/examples/compose-rancher.yml @@ -1,5 +1,5 @@ traefik: - image: traefik + image: traefik:v1.7 command: --api --rancher --rancher.domain=rancher.localhost --rancher.endpoint=http://example.com --rancher.accesskey=XXXXXXX --rancher.secretkey=YYYYYY --logLevel=DEBUG ports: - "80:80" diff --git a/examples/compose-traefik.yml b/examples/compose-traefik.yml index e1b930ac1..eb19c4cef 100644 --- a/examples/compose-traefik.yml +++ b/examples/compose-traefik.yml @@ -1,5 +1,5 @@ traefik: - image: traefik + image: traefik:v1.7 command: -c /dev/null --api --docker --docker.domain=docker.localhost --logLevel=DEBUG ports: - "80:80" diff --git a/examples/k8s/traefik-deployment.yaml b/examples/k8s/traefik-deployment.yaml index 1ad9f0d4e..eb62173e8 100644 --- a/examples/k8s/traefik-deployment.yaml +++ b/examples/k8s/traefik-deployment.yaml @@ -26,7 +26,7 @@ spec: serviceAccountName: traefik-ingress-controller terminationGracePeriodSeconds: 60 containers: - - image: traefik + - image: traefik:v1.7 name: traefik-ingress-lb ports: - name: http diff --git a/examples/k8s/traefik-ds.yaml b/examples/k8s/traefik-ds.yaml index 8a5659054..83bcd06c7 100644 --- a/examples/k8s/traefik-ds.yaml +++ b/examples/k8s/traefik-ds.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: traefik-ingress-controller terminationGracePeriodSeconds: 60 containers: - - image: traefik + - image: traefik:v1.7 name: traefik-ingress-lb ports: - name: http diff --git a/examples/quickstart/README.md b/examples/quickstart/README.md index 7f750305b..82dc1321e 100644 --- a/examples/quickstart/README.md +++ b/examples/quickstart/README.md @@ -13,7 +13,7 @@ version: '3' services: reverse-proxy: - image: traefik # The official Traefik docker image + image: traefik:v1.7 # The official Traefik docker image command: --api --docker # Enables the web UI and tells Traefik to listen to docker ports: - "80:80" # The HTTP port diff --git a/examples/quickstart/docker-compose.yml b/examples/quickstart/docker-compose.yml index 0ea14102e..d0a36ade4 100644 --- a/examples/quickstart/docker-compose.yml +++ b/examples/quickstart/docker-compose.yml @@ -3,7 +3,7 @@ version: '3' services: # The reverse proxy service (Traefik) reverse-proxy: - image: traefik # The official Traefik docker image + image: traefik:v1.7 # The official Traefik docker image command: --api --docker # Enables the web UI and tells Traefik to listen to docker ports: - "80:80" # The HTTP port diff --git a/webui/.gitignore b/webui/.gitignore index eabf65e51..82ef94631 100644 --- a/webui/.gitignore +++ b/webui/.gitignore @@ -8,6 +8,7 @@ # dependencies /node_modules +/.quasar # IDEs and editors /.idea