1
0
Fork 0

Adds Docker provider support

Co-authored-by: Julien Salleyron <julien@containo.us>
This commit is contained in:
Ludovic Fernandez 2019-01-18 15:18:04 +01:00 committed by Traefiker Bot
parent 8735263930
commit b54c956c5e
78 changed files with 3476 additions and 5587 deletions

View file

@ -173,7 +173,7 @@ services:
ipv4_address: 10.0.1.9
whoami01:
image: emilevauge/whoami
image: containous/whoami
expose:
- "80"
labels:
@ -186,7 +186,7 @@ services:
ipv4_address: 10.0.1.10
whoami02:
image: emilevauge/whoami
image: containous/whoami
expose:
- "80"
labels:

View file

@ -8,13 +8,13 @@ traefik:
- /var/run/docker.sock:/var/run/docker.sock
whoami1:
image: emilevauge/whoami
image: containous/whoami
labels:
- "traefik.backend=whoami"
- "traefik.frontend.rule=Host:whoami.docker.localhost"
whoami2:
image: emilevauge/whoami
image: containous/whoami
labels:
- "traefik.backend=whoami"
- "traefik.frontend.rule=Host:whoami.docker.localhost"

View file

@ -41,7 +41,7 @@ Edit your `docker-compose.yml` file and add the following at the end of your fil
```yaml
# ...
whoami:
image: emilevauge/whoami # A container that exposes an API to show its IP address
image: containous/whoami # A container that exposes an API to show its IP address
labels:
- "traefik.frontend.rule=Host:whoami.docker.localhost"
```

View file

@ -13,6 +13,6 @@ services:
# A container that exposes a simple API
whoami:
image: emilevauge/whoami # A container that exposes an API to show its IP address
image: containous/whoami # A container that exposes an API to show its IP address
labels:
- "traefik.frontend.rule=Host:whoami.docker.localhost"

View file

@ -12,7 +12,7 @@
"container": {
"type": "DOCKER",
"docker": {
"image": "emilevauge/whoami",
"image": "containous/whoami",
"network": "BRIDGE",
"portMappings": [
{

View file

@ -6,7 +6,7 @@
"container": {
"type": "DOCKER",
"docker": {
"image": "emilevauge/whoami",
"image": "containous/whoami",
"network": "BRIDGE",
"portMappings": [
{ "containerPort": 80, "hostPort": 0, "protocol": "tcp" }