From 0745defc9f25cb41a9fb8bfdcdece7ca250eb5bc Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 15 Sep 2016 09:54:40 +1200 Subject: [PATCH] Add the HAProxy template --- README.md | 1 + templates.json | 22 ++++++++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8f12e6e..6622151 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ It also describes how to host your own Apps. * Docker registry (based on `registry:latest`) * Nginx (based on `nginx:latest`) * Httpd (based on `httpd:latest`) +* HAProxy (based on `httpd:latest`) * MySQL (based on `mysql:latest`) * Mongo (based on `mongo:latest`) * Redis (based on `redis:latest`) diff --git a/templates.json b/templates.json index c12780e..dae9ca0 100644 --- a/templates.json +++ b/templates.json @@ -8,6 +8,16 @@ "5000/tcp" ] }, + { + "title": "Nginx", + "description": "High performance web server", + "logo": "http://www.gabrielmatteson.com/wp-content/uploads/2014/04/Nginx-Logo-02.png", + "image": "nginx:latest", + "ports": [ + "80/tcp", + "443/tcp" + ] + }, { "title": "Httpd", "description": "Open-source HTTP server", @@ -18,14 +28,10 @@ ] }, { - "title": "Nginx", - "description": "High performance web server", - "logo": "http://www.gabrielmatteson.com/wp-content/uploads/2014/04/Nginx-Logo-02.png", - "image": "nginx:latest", - "ports": [ - "80/tcp", - "443/tcp" - ] + "title": "HAProxy", + "description": "High Performance TCP/HTTP Load Balancer", + "logo": "https://hub.docker.com/public/images/official/haproxy.png", + "image": "haproxy:latest" }, { "title": "MySQL",