- Fix envVar field names (key/value/description instead of name/default) - Ghost: use MariaDB platform service instead of SQLite - WordPress: use MariaDB platform service - Nextcloud: use MariaDB + Redis platform services - Gitea: use MariaDB platform service
17 lines
987 B
JSON
17 lines
987 B
JSON
{
|
|
"image": "ghost:latest",
|
|
"port": 2368,
|
|
"envVars": [
|
|
{ "key": "database__client", "value": "mysql", "description": "Database client" },
|
|
{ "key": "database__connection__host", "value": "${MARIADB_HOST}", "description": "Database host (auto-injected by platform)" },
|
|
{ "key": "database__connection__port", "value": "${MARIADB_PORT}", "description": "Database port (auto-injected by platform)" },
|
|
{ "key": "database__connection__user", "value": "${MARIADB_USER}", "description": "Database user (auto-injected by platform)" },
|
|
{ "key": "database__connection__password", "value": "${MARIADB_PASSWORD}", "description": "Database password (auto-injected by platform)" },
|
|
{ "key": "database__connection__database", "value": "${MARIADB_DATABASE}", "description": "Database name (auto-injected by platform)" },
|
|
{ "key": "url", "value": "http://localhost:2368", "description": "Public URL of the blog" }
|
|
],
|
|
"platformRequirements": {
|
|
"mariadb": true
|
|
}
|
|
}
|