added new app: jotty (1.10.4)

This commit is contained in:
Markus 2025-11-11 23:22:12 +01:00
parent c86b0a41fd
commit 003f0ce1be
5 changed files with 442 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{
"schemaVersion": 2,
"services": [
{
"name": "jotty",
"image": "ghcr.io/fccview/jotty:1.10.2",
"isMain": true,
"environment": [
{
"key": "NODE_ENV",
"value": "production"
}
],
"internalPort": 3000,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/data",
"containerPath": "/app/data",
"readOnly": false,
"shared": false,
"private": false
},
{
"hostPath": "${APP_DATA_DIR}/data/config",
"containerPath": "/app/config",
"readOnly": false,
"shared": false,
"private": false
},
{
"hostPath": "${APP_DATA_DIR}/data/cache",
"containerPath": "/app/.next/cache",
"readOnly": false,
"shared": false,
"private": false
}
],
"user": "1000:1000"
}
]
}