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

41 lines
941 B
JSON

{
"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"
}
]
}