added new app: readeck (v0.20.4)
This commit is contained in:
parent
a241cc867f
commit
0292accfa5
4 changed files with 181 additions and 0 deletions
43
apps/readeck/docker-compose.json
Normal file
43
apps/readeck/docker-compose.json
Normal 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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue