mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
Create local-ai-cuda12 community container
Signed-off-by: Fábio C. Barrionuevo da Luz <bnafta@gmail.com>
This commit is contained in:
parent
109b9dc019
commit
f4c3ddd50d
1 changed files with 49 additions and 0 deletions
49
community-containers/local-ai-cuda12/local-ai-cuda12.json
Normal file
49
community-containers/local-ai-cuda12/local-ai-cuda12.json
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"aio_services_v1": [
|
||||||
|
{
|
||||||
|
"container_name": "nextcloud-aio-local-ai-cuda12",
|
||||||
|
"display_name": "Local AI",
|
||||||
|
"documentation": "https://github.com/nextcloud/all-in-one/tree/main/community-containers/local-ai-cuda12",
|
||||||
|
"image": "luzfcb/aio-local-ai-cuda12",
|
||||||
|
"image_tag": "v2",
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"devices": [
|
||||||
|
"/dev/dri"
|
||||||
|
],
|
||||||
|
"enable_nvidia_gpu": true,
|
||||||
|
"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-cuda12:8080",
|
||||||
|
"php /var/www/html/occ app:install assistant",
|
||||||
|
"php /var/www/html/occ app:enable assistant"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue