added new app: readeck (v0.20.4)

This commit is contained in:
Markus 2025-11-10 22:58:17 +01:00
parent a241cc867f
commit 0292accfa5
4 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{
"schemaVersion": 2,
"services": [
{
"name": "readeck",
"image": "codeberg.org/readeck/readeck:latest",
"environment": [
{
"key": "READECK_LOG_LEVEL",
"value": "info"
},
{
"key": "READECK_SERVER_HOST",
"value": "0.0.0.0"
},
{
"key": "READECK_SERVER_PORT",
"value": 8000
},
{
"key": "READECK_LOG_FORMAT",
"value": "text"
}
],
"internalPort": 8000,
"volumes": [
{
"hostPath": "readeck-data",
"containerPath": "/readeck",
"readOnly": false,
"shared": false,
"private": false
}
],
"healthCheck": {
"test": "CMD /bin/readeck healthcheck -config config.toml",
"interval": "30s",
"timeout": "2s",
"retries": 3
}
}
]
}