Files
example-appstore/apps/siyuan_Need to edit/docker-compose.json
2025-11-08 00:18:25 -06:00

24 lines
565 B
JSON

{
"$schema": "https://schemas.runtipi.io/dynamic-compose.json",
"services": [
{
"name": "siyuan",
"image": "b3log/siyuan:v3.3.5",
"isMain": true,
"internalPort": 6806,
"environment": {
"TZ": "${TZ}",
"PUID": "1000",
"PGID": "1000"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/workspace",
"containerPath": "/siyuan/workspace/"
}
],
"command": ["--workspace=/siyuan/workspace/", "--accessAuthCode=${SIYUAN_ACCESS_AUTH_CODE}"]
}
]
}