Add ONLYOFFICE DocSpace app (15 services, Community Edition)

This commit is contained in:
2026-04-11 12:17:35 +00:00
parent 20043aacab
commit d7269f94fb
7 changed files with 944 additions and 0 deletions

83
apps/docspace/config.json Normal file
View File

@@ -0,0 +1,83 @@
{
"name": "ONLYOFFICE DocSpace",
"id": "docspace",
"available": true,
"short_desc": "Collaborative room-based document management platform with built-in editors",
"author": "ONLYOFFICE",
"port": 8843,
"categories": ["utilities", "documents", "collaboration"],
"tipi_version": 1,
"version": "latest",
"source": "https://github.com/ONLYOFFICE/DocSpace",
"website": "https://www.onlyoffice.com/docspace.aspx",
"exposable": true,
"dynamic_config": true,
"supported_architectures": ["amd64"],
"min_tipi_version": "4.0.0",
"form_fields": [
{
"type": "random",
"label": "JWT Secret",
"hint": "Secret key for Document Server JWT authentication",
"env_variable": "DOCSPACE_JWT_SECRET",
"min": 32,
"encoding": "hex"
},
{
"type": "random",
"label": "MySQL Root Password",
"hint": "Root password for the MySQL database",
"env_variable": "DOCSPACE_MYSQL_ROOT_PASSWORD",
"min": 24,
"encoding": "hex"
},
{
"type": "random",
"label": "MySQL User Password",
"hint": "Password for the docspace MySQL user",
"env_variable": "DOCSPACE_MYSQL_PASSWORD",
"min": 24,
"encoding": "hex"
},
{
"type": "random",
"label": "App Machine Key",
"hint": "Core machine key used for encryption and signing",
"env_variable": "DOCSPACE_MACHINEKEY",
"min": 32,
"encoding": "hex"
},
{
"type": "random",
"label": "Identity Encryption Secret",
"hint": "Secret key for identity service encryption",
"env_variable": "DOCSPACE_IDENTITY_SECRET",
"min": 32,
"encoding": "hex"
},
{
"type": "random",
"label": "RabbitMQ Password",
"hint": "Password for the RabbitMQ message broker",
"env_variable": "DOCSPACE_RABBITMQ_PASSWORD",
"min": 24,
"encoding": "hex"
},
{
"type": "email",
"label": "Admin Email",
"hint": "Email address for the DocSpace administrator account",
"required": true,
"env_variable": "DOCSPACE_ADMIN_EMAIL"
},
{
"type": "fqdn",
"label": "DocSpace Domain",
"hint": "Domain name for accessing DocSpace (e.g., docspace.example.com)",
"required": false,
"env_variable": "DOCSPACE_DOMAIN"
}
],
"created_at": 1712793600000,
"updated_at": 1712793600000
}