Skip to content

Commit 7b22c20

Browse files
add app
1 parent 7a5fc8c commit 7b22c20

28 files changed

+134
-8
lines changed

.DS_Store

10 KB
Binary file not shown.

apps/.DS_Store

6 KB
Binary file not shown.

apps/caddy.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "Web",
3+
"description": "Caddy 2 is a powerful, enterprise-ready, open source web server with automatic HTTPS written in Go.",
4+
"additional_info": {
5+
"imageName": "caddy",
6+
"ports": [{"port": 80,"type": "http","entrance": true}]
7+
},
8+
"versions": [{
9+
"version": "2.1.1-alpine"
10+
}]
11+
}

apps/cassandra.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "Database",
3+
"description": "Apache Cassandra is an open source distributed database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. Cassandra offers robust support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients.",
4+
"additional_info": {
5+
"imageName":"cassandra",
6+
"ports":[{"port":9042,"type":"tcp"}]
7+
},
8+
"versions": [{
9+
"version": "3.11.7"
10+
}]
11+
}

apps/clickhouse.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "Database",
3+
"description": "ClickHouse is an open-source column-oriented database management system that allows generating analytical data reports in real-time.",
4+
"additional_info": {
5+
"imageName":"yandex/clickhouse-server",
6+
"ports":[
7+
{"port":8123,"type":"http"},
8+
{"port":9000,"type":"tcp"}
9+
]
10+
},
11+
"versions": [{
12+
"version": "20.6.6.7"
13+
}]
14+
}

apps/go-fastdfs.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "Util",
3+
"description": "A simple distributed file storage service, high performance, high reliability, labor-saving and worry-free operation and maintenance, and extremely simple design allows expansion as you want.",
4+
"additional_info": {
5+
"imageName": "sjqzhang/go-fastdfs",
6+
"ports": [{"port":8080,"type":"http","entrance": true}]
7+
},
8+
"versions": [{
9+
"version": "latest"
10+
}]
11+
}

apps/mongodb.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"type": "Database",
3+
"description": "MongoDB document databases provide high availability and easy scalability.",
4+
"additional_info": {
5+
"imageName":"mongo",
6+
"ports":[{"port":27017,"type":"tcp"}]
7+
},
8+
"versions": [{
9+
"version": "3.6.20"
10+
}]
11+
}

apps/mosquitto.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"type": "Util",
3+
"description": "Eclipse Mosquitto is an open source message broker which implements MQTT version 5, 3.1.1 and 3.1",
4+
"additional_info": {
5+
"imageName": "eclipse-mosquitto",
6+
"ports": [
7+
{"port":1883,"type":"tcp"},
8+
{"port":9001,"type":"ws"}
9+
]
10+
},
11+
"versions": [{
12+
"version": "1.6.12"
13+
}]
14+
}

apps/mysql.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"type": "Database",
3+
"description": "MySQL is the world''s most popular open source database. With its proven performance, reliability and ease-of-use, MySQL has become the leading database choice for web-based applications, covering the entire range from personal projects and websites, via e-commerce and information services, all the way to high profile web properties including Facebook, Twitter, YouTube, Yahoo! and many more.",
4+
"additional_info": {
5+
"imageName":"mysql",
6+
"ports":[{"port":3306,"type":"tcp"}],
7+
"envs":[{"label":"password","key":"MYSQL_ROOT_PASSWORD"}]
8+
},
9+
"versions": [{
10+
"version": "5.7.31"
11+
}]
12+
}

apps/neo4j.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"type": "Database",
3+
"description": "Neo4j is a highly scalable, robust native graph database.",
4+
"additional_info": {
5+
"imageName":"neo4j",
6+
"ports":[
7+
{"port":7474,"type":"http"},
8+
{"port":7687,"type":"bolt"}]
9+
},
10+
"versions": [{
11+
"version": "4.1.3"
12+
}]
13+
}

0 commit comments

Comments
 (0)