app-store/apps/open-webui/docker-compose.json
Stavros 85072ac65a
feat: openwebui app (#3491)
* feat: openwebui app

* refactor(openwebui): use text instead of fqdnip

* refactor(openwebui): change logo to light mode

* refactor(openwebui): remove wrong option from compose json
2024-05-14 15:21:09 +03:00

18 lines
386 B
JSON

{
"openPort": true,
"image": "ghcr.io/open-webui/open-webui:git-90503be",
"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}"
}
}