fix(glances, open-webui): wrong compose.json format

This commit is contained in:
Nicolas Meienberger 2024-05-21 20:01:38 +02:00
parent 8de9406fb0
commit 515f697db6
4 changed files with 29 additions and 23 deletions

View File

@ -5,7 +5,7 @@
"available": true, "available": true,
"exposable": true, "exposable": true,
"id": "glance", "id": "glance",
"tipi_version": 1, "tipi_version": 2,
"version": "v0.4.0", "version": "v0.4.0",
"categories": ["utilities"], "categories": ["utilities"],
"description": "A self-hosted dashboard that puts all your feeds in one place", "description": "A self-hosted dashboard that puts all your feeds in one place",

View File

@ -1,13 +1,16 @@
{ {
"openPort": true, "services": [
"image": "glanceapp/glance:v0.4.0",
"name": "glance",
"internalPort": "8080",
"isMain": true,
"volumes": [
{ {
"hostPath": "${APP_DATA_DIR}/data/glance.yml", "image": "glanceapp/glance:v0.4.0",
"containerPath": "/app/glance.yml" "name": "glance",
"internalPort": 8080,
"isMain": true,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data/glance.yml",
"containerPath": "/app/glance.yml"
}
]
} }
] ]
} }

View File

@ -5,7 +5,7 @@
"exposable": true, "exposable": true,
"port": 8536, "port": 8536,
"id": "open-webui", "id": "open-webui",
"tipi_version": 2, "tipi_version": 3,
"version": "git-90503be", "version": "git-90503be",
"categories": ["ai"], "categories": ["ai"],
"description": "Open WebUI is an extensible, feature-rich, and user-friendly self-hosted WebUI designed to operate entirely offline.", "description": "Open WebUI is an extensible, feature-rich, and user-friendly self-hosted WebUI designed to operate entirely offline.",

View File

@ -1,17 +1,20 @@
{ {
"openPort": true, "services": [
"image": "ghcr.io/open-webui/open-webui:git-90503be",
"name": "open-webui",
"internalPort": "8080",
"isMain": true,
"volumes": [
{ {
"hostPath": "${APP_DATA_DIR}/data", "image": "ghcr.io/open-webui/open-webui:git-90503be",
"containerPath": "/app/backend/data" "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}"
}
} }
], ]
"environment": {
"OLLAMA_BASE_URL": "${OPENWEBUI_OLLAMA_URL}",
"OPENAI_API_KEY": "${OPENWEBUI_OPENAI_KEY}"
}
} }