This commit is contained in:
CanbiZ 2025-07-22 09:34:02 +02:00
parent aca09d00dd
commit db0c449520
2 changed files with 43 additions and 43 deletions

View File

@ -8,8 +8,8 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
APP="LinkStack" APP="LinkStack"
var_tags="${var_tags:-os}" var_tags="${var_tags:-os}"
var_cpu="${var_cpu:-1}" var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-2048}" var_ram="${var_ram:-1024}"
var_disk="${var_disk:-10}" var_disk="${var_disk:-5}"
var_os="${var_os:-debian}" var_os="${var_os:-debian}"
var_version="${var_version:-12}" var_version="${var_version:-12}"
var_unprivileged="${var_unprivileged:-1}" var_unprivileged="${var_unprivileged:-1}"

View File

@ -1,44 +1,44 @@
{ {
"name": "LinkStack", "name": "LinkStack",
"slug": "linkstack", "slug": "linkstack",
"categories": [ "categories": [
9 9
], ],
"date_created": "2025-05-21", "date_created": "2025-07-22",
"type": "ct", "type": "ct",
"updateable": false, "updateable": true,
"privileged": false, "privileged": false,
"config_path": "/var/www/html/linkstack/linkstack/.env", "config_path": "/var/www/html/linkstack/.env",
"interface_port": 80, "interface_port": 80,
"documentation": "https://docs.linkstack.org/", "documentation": "https://docs.linkstack.org/",
"website": "https://linkstack.org/", "website": "https://linkstack.org/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/linkstack.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/linkstack.webp",
"description": "LinkStack is an open-source, self-hosted alternative to Linktree, allowing users to create a customizable profile page to share multiple links, hosted on their own server.", "description": "LinkStack is an open-source, self-hosted alternative to Linktree, allowing users to create a customizable profile page to share multiple links, hosted on their own server.",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/linkstack.sh", "script": "ct/linkstack.sh",
"resources": { "resources": {
"cpu": 1, "cpu": 1,
"ram": 2048, "ram": 1024,
"hdd": 10, "hdd": 5,
"os": "Debian", "os": "Debian",
"version": "12" "version": "12"
} }
} }
], ],
"default_credentials": { "default_credentials": {
"username": null, "username": null,
"password": null "password": null
},
"notes": [
{
"text": "LinkStack can be updated via the user interface or with the command `update`.",
"type": "info"
}, },
"notes": [ {
{ "text": "Complete setup via the web interface at http://<container-ip>/. Check installation logs: `cat ~/linkstack-install.log`",
"text": "LinkStack can be updated via the user interface.", "type": "info"
"type": "info" }
}, ]
{
"text": "Complete setup via the web interface at http://<container-ip>/. Check installation logs: `cat ~/linkstack-install.log`",
"type": "info"
}
]
} }