From b4b871ee677c0342c07bb55bf5073f2a74af8b62 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Wed, 8 Nov 2017 09:43:49 +0100 Subject: [PATCH] refactor(templates): remove stack_templates.json --- Dockerfile | 1 - stack_templates.json | 48 -------------------------------------------- 2 files changed, 49 deletions(-) delete mode 100644 stack_templates.json diff --git a/Dockerfile b/Dockerfile index d3d82a4..37f7500 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM nginx:stable-alpine COPY templates.json /usr/share/nginx/html/templates.json -COPY stack_templates.json /usr/share/nginx/html/stack_templates.json EXPOSE 80 diff --git a/stack_templates.json b/stack_templates.json deleted file mode 100644 index 04df971..0000000 --- a/stack_templates.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "type": "stack", - "title": "OpenFaaS", - "description": "A serverless framework", - "note": "Deploys the API gateway and sample functions. You can access the UI on port 8080.", - "categories": ["serverless"], - "platform": "linux", - "logo": "https://cloudinovasi.id/assets/img/logos/registry.png", - "repository": { - "url": "https://github.com/openfaas/faas", - "stackfile": "docker-compose.yml" - } - }, - { - "type": "stack", - "title": "CockroachDB", - "description": "CockroachDB cluster", - "note": "Deploys an insecure CockroachDB cluster, please refer to CockroachDB documentation for production deployments.", - "categories": ["database"], - "platform": "linux", - "logo": "https://cloudinovasi.id/assets/img/logos/cockroachdb.png", - "repository": { - "url": "https://github.com/portainer/templates", - "stackfile": "stacks/cockroachdb/docker-stack.yml" - } - }, - { - "type": "stack", - "title": "Wordpress", - "description": "Wordpress setup with a MySQL database", - "note": "Deploys a Wordpress instance connected to a MySQL database.", - "categories": ["CMS"], - "platform": "linux", - "logo": "https://cloudinovasi.id/assets/img/logos/wordpress.png", - "repository": { - "url": "https://github.com/portainer/templates", - "stackfile": "stacks/wordpress/docker-stack.yml" - }, - "env": [ - { - "name": "MYSQL_ROOT_PASSWORD", - "label": "Database root password", - "description": "Password used by the MySQL root user." - } - ] - } -]