Christopher Vagnetoft
2ec5081832
* Updated README, added LICENSE * New services: memcached, phpcacheadmin * Polished commands * ContainerManager now persists state
32 lines
642 B
JSON
32 lines
642 B
JSON
{
|
|
"$type": "service",
|
|
"name": "mariadb",
|
|
"description": "MariaDB RDBMS (MySQL fork)",
|
|
"tags": [ "rdbms", "mysql" ],
|
|
"author": null,
|
|
"image": "mariadb",
|
|
"ports": [
|
|
{ "port": 3306, "info": "MySQL client" }
|
|
],
|
|
"environment": {
|
|
"MARIADB_ROOT_PASSWORD": "toor"
|
|
},
|
|
"persistence": [
|
|
{ "path": "/data", "hint": "data" }
|
|
],
|
|
"scripts": {
|
|
"mongosh": {
|
|
"info": "Open the mongo shell",
|
|
"execute": "mongosh"
|
|
},
|
|
"export": {
|
|
"info": "Export the database",
|
|
"execute": "mysqldump "
|
|
},
|
|
"import": {
|
|
"info": "Import the database",
|
|
"execute": "mongoimport"
|
|
}
|
|
}
|
|
}
|