apps/open-webui/docker-compose.json hinzugefügt

This commit is contained in:
tipi 2025-08-11 10:10:38 +00:00
parent d61df14955
commit 341cf220aa

View File

@ -0,0 +1,21 @@
{
"services": [
{
"image": "ghcr.io/open-webui/open-webui:v0.6.18",
"name": "open-webui",
"internalPort": 8080,
"isMain": true,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/app/backend/data"
}
],
"environment": {
"OLLAMA_BASE_URL": "${OPENWEBUI_OLLAMA_URL}",
"OPENAI_API_KEY": "${OPENWEBUI_OPENAI_KEY}"
}
}
],
"$schema": "../dynamic-compose-schema.json"
}