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,
"exposable": true,
"id": "glance",
"tipi_version": 1,
"tipi_version": 2,
"version": "v0.4.0",
"categories": ["utilities"],
"description": "A self-hosted dashboard that puts all your feeds in one place",

View File

@ -1,13 +1,16 @@
{
"openPort": true,
"image": "glanceapp/glance:v0.4.0",
"name": "glance",
"internalPort": "8080",
"isMain": true,
"volumes": [
"services": [
{
"hostPath": "${APP_DATA_DIR}/data/glance.yml",
"containerPath": "/app/glance.yml"
"image": "glanceapp/glance:v0.4.0",
"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,
"port": 8536,
"id": "open-webui",
"tipi_version": 2,
"tipi_version": 3,
"version": "git-90503be",
"categories": ["ai"],
"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,
"image": "ghcr.io/open-webui/open-webui:git-90503be",
"name": "open-webui",
"internalPort": "8080",
"isMain": true,
"volumes": [
"services": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/app/backend/data"
"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}"
}
}
],
"environment": {
"OLLAMA_BASE_URL": "${OPENWEBUI_OLLAMA_URL}",
"OPENAI_API_KEY": "${OPENWEBUI_OPENAI_KEY}"
}
]
}