2022-09-27 10:29:56 +00:00
|
|
|
{
|
|
|
|
"$type": "service",
|
|
|
|
"name": "postgres",
|
2022-09-27 23:11:14 +00:00
|
|
|
"description": "Postgres RDBMS",
|
|
|
|
"tags": [ "rdbms" ],
|
2022-09-27 10:29:56 +00:00
|
|
|
"author": null,
|
|
|
|
"image": "postgres",
|
|
|
|
"ports": [
|
|
|
|
{ "port": 5432, "info": "Postgres client" }
|
|
|
|
],
|
|
|
|
"environment": {
|
|
|
|
"POSTGRES_PASSWORD": "password"
|
|
|
|
},
|
|
|
|
"persistence": [
|
|
|
|
{ "path": "/data", "hint": "data" }
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"mongosh": {
|
|
|
|
"info": "Open a pg shell",
|
|
|
|
"execute": "psql --user postgres"
|
|
|
|
},
|
|
|
|
"export": {
|
|
|
|
"info": "Export the database",
|
|
|
|
"execute": "mysqldump "
|
|
|
|
},
|
|
|
|
"import": {
|
|
|
|
"info": "Import the database",
|
|
|
|
"execute": "mongoimport"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|