runtipi-appstore/apps/readeck/docker-compose.json

43 lines
945 B
JSON

{
"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": "${APP_PORT}"
},
{
"key": "READECK_LOG_FORMAT",
"value": "text"
}
],
"internalPort": 8000,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/",
"containerPath": "/readeck",
"readOnly": false,
"shared": false,
"private": false
}
],
"healthCheck": {
"test": "/bin/readeck healthcheck -config /readeck/config.toml",
"interval": "30s",
"timeout": "2s",
"retries": 3
}
}
]
}