diff --git a/apps/open-webui/docker-compose.json b/apps/open-webui/docker-compose.json new file mode 100644 index 0000000..b2698ec --- /dev/null +++ b/apps/open-webui/docker-compose.json @@ -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" +} \ No newline at end of file