Files
appstore-apptemplates/apps/postgres/versions/1.0.0/config.json
Juergen Kunz b5585534eb feat: initial app template catalog with 16 apps
Populate the appstore-apptemplates repo with catalog.json and
per-app config files for all 16 curated Docker apps, each at v1.0.0.
2026-03-19 15:30:08 +00:00

19 lines
284 B
JSON

{
"image": "postgres:16-alpine",
"port": 5432,
"envVars": [
{
"name": "POSTGRES_PASSWORD",
"required": true
},
{
"name": "POSTGRES_USER",
"default": "postgres"
},
{
"name": "POSTGRES_DB",
"default": "postgres"
}
]
}