mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 11:32:27 +08:00
b36f71ff74
Signed-off-by: Simon L <szaimen@e.mail.de>
45 lines
1.9 KiB
JSON
45 lines
1.9 KiB
JSON
{
|
|
"aio_services_v1": [
|
|
{
|
|
"container_name": "nextcloud-aio-local-ai",
|
|
"display_name": "Local AI",
|
|
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/local-ai",
|
|
"image": "szaimen/aio-local-ai",
|
|
"image_tag": "v1",
|
|
"internal_port": "8080",
|
|
"restart": "unless-stopped",
|
|
"environment": [
|
|
"TZ=%TIMEZONE%",
|
|
"MODELS_PATH=/models"
|
|
],
|
|
"volumes": [
|
|
{
|
|
"source": "nextcloud_aio_localai_models",
|
|
"destination": "/models",
|
|
"writeable": true
|
|
},
|
|
{
|
|
"source": "nextcloud_aio_localai_images",
|
|
"destination": "/tmp/generated/images/",
|
|
"writeable": true
|
|
},
|
|
{
|
|
"source": "%NEXTCLOUD_DATADIR%",
|
|
"destination": "/nextcloud",
|
|
"writeable": false
|
|
}
|
|
],
|
|
"nextcloud_exec_commands": [
|
|
"mkdir '/mnt/ncdata/admin/files/nextcloud-aio-local-ai'",
|
|
"touch '/mnt/ncdata/admin/files/nextcloud-aio-local-ai/models.yaml'",
|
|
"echo 'Scanning nextcloud-aio-local-ai folder for admin user...'",
|
|
"php /var/www/html/occ files:scan --path='/admin/files/nextcloud-aio-local-ai'",
|
|
"php /var/www/html/occ app:install integration_openai",
|
|
"php /var/www/html/occ app:enable integration_openai",
|
|
"php /var/www/html/occ config:app:set integration_openai url --value http://nextcloud-aio-local-ai:8080",
|
|
"php /var/www/html/occ app:install assistant",
|
|
"php /var/www/html/occ app:enable assistant"
|
|
]
|
|
}
|
|
]
|
|
}
|