Skip to content

Instantly share code, notes, and snippets.

@thomasleveil
Last active March 31, 2018 01:52
Show Gist options
  • Save thomasleveil/b8a414ab962639a8a2cfdee299b23e89 to your computer and use it in GitHub Desktop.
Save thomasleveil/b8a414ab962639a8a2cfdee299b23e89 to your computer and use it in GitHub Desktop.
Portainer templates
[{
"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://docs.traefik.io/img/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"
}]
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment