Skip to content

Commit

Permalink
Update Traefik image version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored and traefiker committed Sep 17, 2019
1 parent 254dc38 commit d1a8c7f
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 18 deletions.
4 changes: 2 additions & 2 deletions docs/configuration/entrypoints.md
Expand Up @@ -97,15 +97,15 @@ 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"
```
or
```yaml
traefik:
image: traefik
image: traefik:v1.7
command: --defaultentrypoints=powpow --entryPoints='Name:powpow Address::42 Compress:true'
```

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions docs/user-guide/cluster-docker-consul.md
Expand Up @@ -91,7 +91,7 @@ To watch docker events, add `--docker.watch`.
version: "3"
services:
traefik:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
command:
- "--api"
- "--entrypoints=Name:http Address::80 Redirect.EntryPoint:https"
Expand Down Expand Up @@ -156,7 +156,7 @@ The initializer in a docker-compose file will be:

```yaml
traefik_init:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
command:
- "storeconfig"
- "--api"
Expand All @@ -177,7 +177,7 @@ And now, the Traefik part will only have the Consul configuration.

```yaml
traefik:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
depends_on:
- traefik_init
- consul
Expand All @@ -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:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
command:
- "storeconfig"
- "--api"
Expand Down Expand Up @@ -229,7 +229,7 @@ services:
depends_on:
- consul
traefik:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
depends_on:
- traefik_init
- consul
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/docker-and-lets-encrypt.md
Expand Up @@ -50,7 +50,7 @@ version: '2'

services:
traefik:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
restart: always
ports:
- 80:80
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/kubernetes.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/kv-config.md
Expand Up @@ -139,7 +139,7 @@ Here is the [docker-compose file](https://docs.docker.com/compose/compose-file/)

```yaml
traefik:
image: traefik:<stable version from https://hub.docker.com/_/traefik>
image: traefik:<stable v1.7 from https://hub.docker.com/_/traefik>
command: --consul --consul.endpoint=127.0.0.1:8500
ports:
- "80:80"
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/traefik-deployment.yaml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/traefik-ds.yaml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/docker-compose.yml
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions webui/.gitignore
Expand Up @@ -8,6 +8,7 @@

# dependencies
/node_modules
/.quasar

# IDEs and editors
/.idea
Expand Down

0 comments on commit d1a8c7f

Please sign in to comment.