Other Apps I need to add

This commit is contained in:
cody conder
2025-10-21 22:32:16 -05:00
parent c756ea0244
commit f0792907f7
15 changed files with 781 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"$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}"]
}
]
}