216 lines
5.2 KiB
JSON
216 lines
5.2 KiB
JSON
[
|
|
{
|
|
"title": "Registry",
|
|
"description": "Docker image registry",
|
|
"logo": "https://hub.docker.com/public/images/official/registry.png",
|
|
"image": "registry:latest",
|
|
"ports": [
|
|
"5000/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Nginx",
|
|
"description": "High performance web server",
|
|
"logo": "https://hub.docker.com/public/images/official/nginx.png",
|
|
"image": "nginx:latest",
|
|
"ports": [
|
|
"80/tcp",
|
|
"443/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Httpd",
|
|
"description": "Open-source HTTP server",
|
|
"logo": "https://hub.docker.com/public/images/official/httpd.png",
|
|
"image": "httpd:latest",
|
|
"ports": [
|
|
"80/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "MySQL",
|
|
"description": "The most popular open-source database",
|
|
"logo": "https://www.mysql.fr/common/logos/logo-mysql-170x115.png",
|
|
"image": "mysql:latest",
|
|
"env": [
|
|
{
|
|
"name": "MYSQL_ROOT_PASSWORD",
|
|
"label": "Root password"
|
|
}
|
|
],
|
|
"ports": [
|
|
"3306/tcp"
|
|
],
|
|
"volumes": ["/var/lib/mysql"]
|
|
},
|
|
{
|
|
"title": "MariaDB",
|
|
"description": "Performance beyond MySQL",
|
|
"logo": "https://hub.docker.com/public/images/official/mariadb.png",
|
|
"image": "mariadb:latest",
|
|
"env": [
|
|
{
|
|
"name": "MYSQL_ROOT_PASSWORD",
|
|
"label": "Root password"
|
|
}
|
|
],
|
|
"ports": [
|
|
"3306/tcp"
|
|
],
|
|
"volumes": ["/var/lib/mysql"]
|
|
},
|
|
{
|
|
"title": "PostgreSQL",
|
|
"description": "The most advanced open-source database",
|
|
"logo": "https://hub.docker.com/public/images/official/postgres.png",
|
|
"image": "postgres:latest",
|
|
"env": [
|
|
{
|
|
"name": "POSTGRES_PASSWORD",
|
|
"label": "Superuser password"
|
|
}
|
|
],
|
|
"ports": [
|
|
"5432/tcp"
|
|
],
|
|
"volumes": ["/var/lib/postgresql/data"]
|
|
},
|
|
{
|
|
"title": "Mongo",
|
|
"description": "Open-source document-oriented database",
|
|
"logo": "https://hub.docker.com/public/images/official/mongo.png",
|
|
"image": "mongo:latest",
|
|
"ports": [
|
|
"27017/tcp"
|
|
],
|
|
"volumes": ["/data/db"]
|
|
},
|
|
{
|
|
"title": "Elasticsearch",
|
|
"description": "Open-source search and analytics engine",
|
|
"logo": "https://camo.githubusercontent.com/970d309f5d85621a6c0b9e6ce0e82d2eca049c23/687474703a2f2f692e696d6775722e636f6d2f786c3178676a6d2e706e67",
|
|
"image": "elasticsearch:latest",
|
|
"ports": [
|
|
"9200/tcp",
|
|
"9300/tcp"
|
|
],
|
|
"volumes": ["/usr/share/elasticsearch/data"]
|
|
},
|
|
{
|
|
"title": "Redis",
|
|
"description": "Open-source in-memory data structure store",
|
|
"logo": "https://hub.docker.com/public/images/official/redis.png",
|
|
"image": "redis:latest",
|
|
"ports": [
|
|
"6379/tcp"
|
|
],
|
|
"volumes": ["/data"]
|
|
},
|
|
{
|
|
"title": "RabbitMQ",
|
|
"description": "Highly reliable enterprise messaging system",
|
|
"logo": "https://www.rabbitmq.com/img/rabbitmq_logo_strap.png",
|
|
"image": "rabbitmq:latest",
|
|
"ports": [
|
|
"5671/tcp",
|
|
"5672/tcp"
|
|
],
|
|
"volumes": ["/var/lib/rabbitmq"]
|
|
},
|
|
{
|
|
"title": "Jenkins",
|
|
"description": "Open-source continuous integration tool",
|
|
"logo": "https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png",
|
|
"image": "jenkins:latest",
|
|
"ports": [
|
|
"8080/tcp",
|
|
"50000/tcp"
|
|
],
|
|
"volumes": ["/var/jenkins_home"]
|
|
},
|
|
{
|
|
"title": "WordPress",
|
|
"description": "A free and open-source CMS",
|
|
"logo": "https://hub.docker.com/public/images/official/wordpress.png",
|
|
"image": "wordpress:latest",
|
|
"env": [
|
|
{
|
|
"name": "WORDPRESS_DB_HOST",
|
|
"label": "MySQL database host",
|
|
"type": "container"
|
|
},
|
|
{
|
|
"name": "WORDPRESS_DB_PASSWORD",
|
|
"label": "Database password"
|
|
}
|
|
],
|
|
"ports": [
|
|
"80/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Joomla",
|
|
"description": "Another free and open-source CMS",
|
|
"logo": "https://hub.docker.com/public/images/official/joomla.png",
|
|
"image": "joomla:latest",
|
|
"env": [
|
|
{
|
|
"name": "JOOMLA_DB_HOST",
|
|
"label": "MySQL database host",
|
|
"type": "container"
|
|
},
|
|
{
|
|
"name": "JOOMLA_DB_PASSWORD",
|
|
"label": "Database password"
|
|
}
|
|
],
|
|
"ports": [
|
|
"80/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Drupal",
|
|
"description": "Open-source content management framework",
|
|
"logo": "https://www.drupal.org/files/druplicon-small.png",
|
|
"image": "drupal:latest",
|
|
"ports": [
|
|
"80/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Magento 2",
|
|
"description": "Open-source e-commerce platform",
|
|
"logo": "http://www.taxrates.com/wp-content/uploads/2015/11/magento-logo.png",
|
|
"image": "alankent/gsd:latest",
|
|
"ports": [
|
|
"80/tcp",
|
|
"3000/tcp",
|
|
"3001/tcp"
|
|
]
|
|
},
|
|
{
|
|
"title": "Wowza",
|
|
"description": "Streaming media server",
|
|
"logo": "https://www.wowza.com/uploads/images/wse-logo-bug-168x168.png",
|
|
"image": "sameersbn/wowza:4.1.2-8",
|
|
"env": [
|
|
{
|
|
"name": "WOWZA_ACCEPT_LICENSE",
|
|
"label": "Agree to Wowza EULA",
|
|
"set": "yes"
|
|
},
|
|
{
|
|
"name": "WOWZA_KEY",
|
|
"label": "License key"
|
|
}
|
|
],
|
|
"ports": [
|
|
"1935/tcp",
|
|
"8086/tcp",
|
|
"8087/tcp",
|
|
"8088/tcp"
|
|
],
|
|
"volumes": ["/var/lib/wowza"]
|
|
}
|
|
]
|