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.
This commit is contained in:
2026-03-19 15:30:08 +00:00
commit b5585534eb
33 changed files with 435 additions and 0 deletions

10
apps/postgres/app.json Normal file
View File

@@ -0,0 +1,10 @@
{
"id": "postgres",
"name": "PostgreSQL",
"description": "Advanced open-source relational database",
"category": "Databases",
"iconName": "postgres",
"latestVersion": "1.0.0",
"versions": ["1.0.0"],
"maintainer": "serve.zone"
}

View File

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