Updates index.md 'Test it!' section
adapted to current schema for compose files uses networks as necessary in a real world usage
This commit is contained in:
parent
c500873586
commit
fe2d4e0d38
1 changed files with 48 additions and 24 deletions
|
@ -70,39 +70,63 @@ docker run -d -p 8080:8080 -p 80:80 -v $PWD/traefik.toml:/etc/traefik/traefik.to
|
||||||
|
|
||||||
## Test it
|
## Test it
|
||||||
|
|
||||||
You can test Træfɪk easily using [Docker compose](https://docs.docker.com/compose), with this `docker-compose.yml` file:
|
You can test Træfɪk easily using [Docker compose](https://docs.docker.com/compose), with this `docker-compose.yml` file in a folder named `traefik`:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
traefik:
|
version: '2'
|
||||||
image: traefik
|
|
||||||
command: --web --docker --docker.domain=docker.localhost --logLevel=DEBUG
|
|
||||||
ports:
|
|
||||||
- "80:80"
|
|
||||||
- "8080:8080"
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
- /dev/null:/traefik.toml
|
|
||||||
|
|
||||||
whoami1:
|
services:
|
||||||
image: emilevauge/whoami
|
proxy:
|
||||||
labels:
|
image: traefik
|
||||||
- "traefik.backend=whoami"
|
command: --web --docker --docker.domain=docker.localhost --logLevel=DEBUG
|
||||||
- "traefik.frontend.rule=Host:whoami.docker.localhost"
|
networks:
|
||||||
|
- webgateway
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "8080:8080"
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- /dev/null:/traefik.toml
|
||||||
|
|
||||||
whoami2:
|
networks:
|
||||||
image: emilevauge/whoami
|
webgateway:
|
||||||
labels:
|
driver: bridge
|
||||||
- "traefik.backend=whoami"
|
|
||||||
- "traefik.frontend.rule=Host:whoami.docker.localhost"
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, start it:
|
Start it from within the `traefik` folder:
|
||||||
|
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
In a browser you may open `http://localhost:8080` to access Træfɪk's dashboard and observe the following magic.
|
||||||
|
|
||||||
|
Now, create a folder named `test` and create a `docker-compose.yml` in it with this content:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
whoami:
|
||||||
|
image: emilevauge/whoami
|
||||||
|
networks:
|
||||||
|
- web
|
||||||
|
labels:
|
||||||
|
- "traefik.backend=whoami"
|
||||||
|
- "traefik.frontend.rule=Host:whoami.docker.localhost"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
web:
|
||||||
|
external:
|
||||||
|
name: traefik_webgateway
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, start and scale it in the `test` folder:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
docker-compose scale whoami=2
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally, test load-balancing between the two servers `whoami1` and `whoami2`:
|
Finally, test load-balancing between the two services `test_whoami_1` and `test_whoami_2`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl -H Host:whoami.docker.localhost http://127.0.0.1
|
$ curl -H Host:whoami.docker.localhost http://127.0.0.1
|
||||||
|
|
Loading…
Reference in a new issue