Skip to content

Commit

Permalink
portainer#65 feat(template): add new Traefik template
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasleveil committed Nov 18, 2017
1 parent 997e1bb commit 89bd73a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -679,5 +679,34 @@
"description": "Password used by the MySQL root user."
}
]
},
{
"type": "container",
"title": "Træfik",
"description": "Træfik (pronounced like traffic) is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease. It supports several backends (Docker, Swarm mode, Kubernetes, Marathon, Consul, Etcd, Rancher, Amazon ECS, and a lot more) to manage its configuration automatically and dynamically.",
"note": "<a href=\"http://docs.traefik.io/\">Træfik documentation</a>",
"platform": "linux",
"categories": [
"webserver",
"reverse proxy"
],
"logo": "https://d33wubrfki0l68.cloudfront.net/e29410f43273a18d40e1bd6e41641f5afdfc8057/eb7ca/traefik.logo.png",
"image": "traefik:latest",
"command": "--web --docker --docker.domain=docker.localhost --logLevel=DEBUG --docker.exposedByDefault=true",
"ports": [
"80/tcp",
"443/tcp",
"8080/tcp"
],
"volumes": [
{
"container": "/var/run/docker.sock",
"bind": "/var/run/docker.sock"
},
{
"container": "/traefik.toml",
"bind": "/dev/null"
}
]
}
]

0 comments on commit 89bd73a

Please sign in to comment.