31 lines
604 B
JSON
31 lines
604 B
JSON
{
|
|
"$type": "service",
|
|
"name": "mariadb",
|
|
"description": "MariaDB (MySQL fork)",
|
|
"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"
|
|
}
|
|
}
|
|
}
|