Add the MariaDB template
This commit is contained in:
@@ -95,6 +95,7 @@ $ docker run -d -p "8080:80" -v "${PWD}/templates.json:/usr/share/nginx/html/tem
|
|||||||
* Nginx (based on `nginx:latest`)
|
* Nginx (based on `nginx:latest`)
|
||||||
* Httpd (based on `httpd:latest`)
|
* Httpd (based on `httpd:latest`)
|
||||||
* MySQL (based on `mysql:latest`)
|
* MySQL (based on `mysql:latest`)
|
||||||
|
* MariaDB (based on `mariadb:latest`)
|
||||||
* PostgreSQL (based on `postgres:latest`)
|
* PostgreSQL (based on `postgres:latest`)
|
||||||
* Mongo (based on `mongo:latest`)
|
* Mongo (based on `mongo:latest`)
|
||||||
* Elasticsearch (based on `elasticsearch:latest`)
|
* Elasticsearch (based on `elasticsearch:latest`)
|
||||||
|
|||||||
@@ -43,6 +43,22 @@
|
|||||||
],
|
],
|
||||||
"volumes": ["/var/lib/mysql"]
|
"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",
|
"title": "PostgreSQL",
|
||||||
"description": "The most advanced open-source database",
|
"description": "The most advanced open-source database",
|
||||||
|
|||||||
Reference in New Issue
Block a user