Skip to content

Commit 3fcd3d3

Browse files
committed
traefik: minor changes
1 parent e40887c commit 3fcd3d3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

traefik/content.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ Start Traefik:
2929
docker run -d -p 8080:8080 -p 80:80 \
3030
-v $PWD/traefik.yml:/etc/traefik/traefik.yml \
3131
-v /var/run/docker.sock:/var/run/docker.sock \
32-
traefik:v2.0
32+
traefik:v2.5
3333
```
3434

3535
Start a backend server, named `test`:
3636

3737
```bash
38-
docker run -d --name test containous/whoami
38+
docker run -d --name test traefik/whoami
3939
```
4040

4141
And finally, you can access to your `whoami` server throught Traefik, on the domain name `test.docker.localhost`:
@@ -61,11 +61,11 @@ X-Real-Ip: 172.17.0.1
6161

6262
The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the routers, services, and middlewares.
6363

64-
![Web UI](https://raw.githubusercontent.com/containous/traefik/v2.0/docs/content/assets/img/webui-dashboard.png)
64+
![Web UI](https://raw.githubusercontent.com/traefik/traefik/v2.5/docs/content/assets/img/webui-dashboard.png)
6565

6666
# Traefik v1 - Example usage
6767

68-
Grab a [sample configuration file](https://raw.githubusercontent.com/containous/traefik/v1.7/traefik.sample.toml) and rename it to `traefik.toml`. Enable `docker` provider and web UI:
68+
Grab a [sample configuration file](https://raw.githubusercontent.com/traefik/traefik/v1.7/traefik.sample.toml) and rename it to `traefik.toml`. Enable `docker` provider and web UI:
6969

7070
```toml
7171
## traefik.toml
@@ -90,7 +90,7 @@ traefik:v1.7
9090
Start a backend server, named `test`:
9191

9292
```bash
93-
docker run -d --name test containous/whoami
93+
docker run -d --name test traefik/whoami
9494
```
9595

9696
And finally, you can access to your `whoami` server throught Traefik, on the domain name `{containerName}.{configuredDomain}` (`test.docker.localhost`):
@@ -116,15 +116,15 @@ X-Forwarded-Server: f2e05c433120
116116

117117
The web UI [http://localhost:8080](http://localhost:8080) will give you an overview of the frontends/backends and also a health dashboard.
118118

119-
![Web UI Providers](https://raw.githubusercontent.com/containous/traefik/v1.7/docs/img/web.frontend.png)
119+
![Web UI Providers](https://raw.githubusercontent.com/traefik/traefik/v1.7/docs/img/web.frontend.png)
120120

121121
# Documentation
122122

123123
You can find the complete documentation:
124124

125-
- for [v1.7](https://docs.traefik.io/v1.7)
126-
- for [v2.0](https://docs.traefik.io/v2.0)
125+
- for [v2.x](https://doc.traefik.io/traefik/)
126+
- for [v1.7](https://doc.traefik.io/traefik/v1.7)
127127

128-
A community support is available at [https://community.containo.us](https://community.containo.us)
128+
A community support is available at [https://community.traefik.io](https://community.traefik.io)
129129

130130
A collection of contributions around Traefik can be found at [https://awesome.traefik.io](https://awesome.traefik.io).

0 commit comments

Comments
 (0)