added new app: linkace (v2.4.0)

This commit is contained in:
Markus 2025-11-06 00:19:24 +01:00
parent 29cc0db4e2
commit d2bbe48ad9
3 changed files with 175 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{
"services": [
{
"name": "linkace",
"image": "linkace/linkace:2.4.0",
"isMain": true,
"internalPort": 80,
"environment": {
"APP_KEY": "base64:f6pz5BcY1ITOy0xkcO+8NrtaGXlZqFAX2YmZmgxkoFA=",
"DB_CONNECTION": "sqlite"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/database",
"containerPath": "/app/database/",
"readOnly": false,
"shared": false,
"private": false
}
],
"dependsOn": {
"valkey": {
"condition": "service_started"
}
}
},
{
"name": "valkey",
"image": "valkey/valkey:alpine",
"healthCheck": {
"test": "CMD valkey-cli ping",
"interval": "20s",
"timeout": "3s"
}
}
]
}