Add container templates and installers for apps

Add new ProxmoxVED container templates (ct/*.sh), install scripts (install/*.sh) and metadata (json/*.json) for multiple applications: Akaunting, Blinko, Certimate, Dagu, Gogs, InvoiceShelf, Matomo, Papermark, RSS-Bridge, SolidTime and WhoDB. Each ct script includes update logic and deployment helpers; install scripts handle dependency installation, service creation (systemd), DB setup, and Caddy/PHP/Node/Postgres configuration where applicable. JSON entries provide UI metadata, resource defaults and access ports for each app.
This commit is contained in:
CanbiZ (MickLesk)
2026-04-13 16:30:41 +02:00
parent c5bbc956a1
commit e3d2cbb566
33 changed files with 1783 additions and 0 deletions

40
json/akaunting.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Akaunting",
"slug": "akaunting",
"categories": [
23
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 80,
"documentation": "https://akaunting.com/hc/docs",
"website": "https://akaunting.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/akaunting.webp",
"config_path": "/opt/akaunting/.env",
"description": "Akaunting is a free, open-source online accounting software designed for small businesses and freelancers, featuring invoicing, expense tracking, and financial reporting.",
"install_methods": [
{
"type": "default",
"script": "ct/akaunting.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Complete the setup wizard via the web interface on first access.",
"type": "info"
}
]
}

40
json/blinko.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Blinko",
"slug": "blinko",
"categories": [
12
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 1111,
"documentation": "https://docs.blinko.space/",
"website": "https://blinko.space/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/blinko.webp",
"config_path": "/opt/blinko/.env",
"description": "Blinko is an AI-powered card note-taking tool designed for capturing and organizing fleeting thoughts with natural language search powered by RAG technology.",
"install_methods": [
{
"type": "default",
"script": "ct/blinko.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Create your account on first access via the web interface.",
"type": "info"
}
]
}

40
json/certimate.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Certimate",
"slug": "certimate",
"categories": [
6
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8090,
"documentation": "https://docs.certimate.me/",
"website": "https://certimate.me/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/certimate.webp",
"config_path": "",
"description": "Certimate is an open-source SSL certificate management tool that automates the application, deployment, and renewal of SSL certificates, supporting integration with various cloud providers and deployment targets.",
"install_methods": [
{
"type": "default",
"script": "ct/certimate.sh",
"resources": {
"cpu": 1,
"ram": 256,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "admin@certimate.fun",
"password": "1234567890"
},
"notes": [
{
"text": "Change the default password after first login!",
"type": "warning"
}
]
}

35
json/dagu.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "Dagu",
"slug": "dagu",
"categories": [
19
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8080,
"documentation": "https://docs.dagu.sh/",
"website": "https://dagu.sh/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/dagu.webp",
"config_path": "",
"description": "Dagu is a powerful, developer-friendly workflow engine that allows you to define DAGs (Directed Acyclic Graphs) in a simple YAML format for scheduling and running complex job dependencies.",
"install_methods": [
{
"type": "default",
"script": "ct/dagu.sh",
"resources": {
"cpu": 1,
"ram": 512,
"hdd": 4,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": []
}

40
json/gogs.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Gogs",
"slug": "gogs",
"categories": [
20
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://gogs.io/docs",
"website": "https://gogs.io/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/gogs.webp",
"config_path": "/opt/gogs/custom/conf/app.ini",
"description": "Gogs is a painless self-hosted Git service written in Go, designed to be the easiest, fastest, and most lightweight way to set up a self-hosted Git service.",
"install_methods": [
{
"type": "default",
"script": "ct/gogs.sh",
"resources": {
"cpu": 2,
"ram": 1024,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Complete the initial setup via the web installer on first access.",
"type": "info"
}
]
}

40
json/invoiceshelf.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "InvoiceShelf",
"slug": "invoiceshelf",
"categories": [
23
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 80,
"documentation": "https://docs.invoiceshelf.com/",
"website": "https://invoiceshelf.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/invoiceshelf.webp",
"config_path": "/opt/invoiceshelf/.env",
"description": "InvoiceShelf is an open-source web and mobile app that helps you track expenses, payments and create professional invoices and estimates.",
"install_methods": [
{
"type": "default",
"script": "ct/invoiceshelf.sh",
"resources": {
"cpu": 2,
"ram": 1024,
"hdd": 4,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Complete the initial setup wizard via the web interface on first access.",
"type": "info"
}
]
}

40
json/matomo.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Matomo",
"slug": "matomo",
"categories": [
9
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 80,
"documentation": "https://matomo.org/docs/",
"website": "https://matomo.org/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/matomo.webp",
"config_path": "/opt/matomo/config/config.ini.php",
"description": "Matomo is the leading free and open-source web analytics platform, providing a privacy-respecting alternative to Google Analytics with full data ownership.",
"install_methods": [
{
"type": "default",
"script": "ct/matomo.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 16,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Complete the setup wizard via the web interface on first access. Database credentials are stored in /opt/matomo/.mariadb-creds.",
"type": "info"
}
]
}

40
json/papermark.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "Papermark",
"slug": "papermark",
"categories": [
12
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://www.papermark.com/docs",
"website": "https://www.papermark.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/papermark.webp",
"config_path": "/opt/papermark/.env",
"description": "Papermark is an open-source document sharing alternative to DocSend with built-in analytics, custom domains, and secure shareable links.",
"install_methods": [
{
"type": "default",
"script": "ct/papermark.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Requires external blob storage (S3 or compatible) and email service (Resend) configured in .env for full functionality.",
"type": "warning"
}
]
}

35
json/rss-bridge.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "RSS-Bridge",
"slug": "rss-bridge",
"categories": [
0
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 80,
"documentation": "https://rss-bridge.github.io/rss-bridge/",
"website": "https://rss-bridge.org/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/rss-bridge.webp",
"config_path": "/opt/rss-bridge/config.ini.php",
"description": "RSS-Bridge is a PHP web application that generates web feeds for websites that don't have one, supporting over 400 bridges for various platforms and services.",
"install_methods": [
{
"type": "default",
"script": "ct/rss-bridge.sh",
"resources": {
"cpu": 1,
"ram": 512,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": []
}

40
json/solidtime.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "SolidTime",
"slug": "solidtime",
"categories": [
25
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 80,
"documentation": "https://docs.solidtime.io/",
"website": "https://www.solidtime.io/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/solidtime.webp",
"config_path": "/opt/solidtime/.env",
"description": "SolidTime is a modern open-source time tracking application for freelancers and agencies, featuring project management, task tracking, billable rates, and multiple organizations.",
"install_methods": [
{
"type": "default",
"script": "ct/solidtime.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Create your first account by registering via the web interface.",
"type": "info"
}
]
}

40
json/whodb.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "WhoDB",
"slug": "whodb",
"categories": [
8
],
"date_created": "2026-04-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8080,
"documentation": "https://docs.whodb.com/",
"website": "https://whodb.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/whodb.webp",
"config_path": "",
"description": "WhoDB is a lightweight next-gen database management tool built with Go and React, supporting PostgreSQL, MySQL, SQLite, MongoDB, Redis, MariaDB, ElasticSearch, and ClickHouse with AI-powered natural language queries.",
"install_methods": [
{
"type": "default",
"script": "ct/whodb.sh",
"resources": {
"cpu": 1,
"ram": 512,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "WhoDB connects to external databases — enter your database credentials on the login page.",
"type": "info"
}
]
}