mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-10 08:25:23 +02:00
feat: add chroma languagetool and shiori templates
This commit is contained in:
7
blueprints/chroma/chroma.svg
Normal file
7
blueprints/chroma/chroma.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
||||
<rect width="128" height="128" rx="24" fill="#2563eb"/>
|
||||
<circle cx="42" cy="44" r="14" fill="#f8fafc"/>
|
||||
<circle cx="86" cy="44" r="14" fill="#f8fafc"/>
|
||||
<circle cx="64" cy="84" r="14" fill="#f8fafc"/>
|
||||
<path d="M52 49h24M57 75 47 56M71 75l10-19" stroke="#bfdbfe" stroke-width="8" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 383 B |
17
blueprints/chroma/docker-compose.yml
Normal file
17
blueprints/chroma/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
chroma:
|
||||
image: chromadb/chroma:1.5.6
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "8000"
|
||||
environment:
|
||||
- IS_PERSISTENT=TRUE
|
||||
- PERSIST_DIRECTORY=/chroma/chroma
|
||||
- ANONYMIZED_TELEMETRY=FALSE
|
||||
volumes:
|
||||
- chroma-data:/chroma/chroma
|
||||
|
||||
volumes:
|
||||
chroma-data:
|
||||
5
blueprints/chroma/template.toml
Normal file
5
blueprints/chroma/template.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "chroma"
|
||||
port = 8000
|
||||
host = "${domain}"
|
||||
8
blueprints/languagetool/docker-compose.yml
Normal file
8
blueprints/languagetool/docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
languagetool:
|
||||
image: collabora/languagetool:6.6
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "8010"
|
||||
6
blueprints/languagetool/languagetool.svg
Normal file
6
blueprints/languagetool/languagetool.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
||||
<rect width="128" height="128" rx="24" fill="#0f766e"/>
|
||||
<path d="M32 84h64" stroke="#ccfbf1" stroke-width="10" stroke-linecap="round"/>
|
||||
<path d="M37 45h54M37 63h38" stroke="#f8fafc" stroke-width="10" stroke-linecap="round"/>
|
||||
<path d="m80 69 10 10 18-24" fill="none" stroke="#facc15" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 427 B |
5
blueprints/languagetool/template.toml
Normal file
5
blueprints/languagetool/template.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "languagetool"
|
||||
port = 8010
|
||||
host = "${domain}"
|
||||
15
blueprints/shiori/docker-compose.yml
Normal file
15
blueprints/shiori/docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
shiori:
|
||||
image: ghcr.io/go-shiori/shiori:v1.8.0-2-g585ea34
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "8080"
|
||||
environment:
|
||||
- SHIORI_DIR=/srv/shiori
|
||||
volumes:
|
||||
- shiori-data:/srv/shiori
|
||||
|
||||
volumes:
|
||||
shiori-data:
|
||||
5
blueprints/shiori/shiori.svg
Normal file
5
blueprints/shiori/shiori.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128">
|
||||
<rect width="128" height="128" rx="24" fill="#7c2d12"/>
|
||||
<path d="M38 26h52a8 8 0 0 1 8 8v68L72 86l-26 16V34a8 8 0 0 1 8-8Z" fill="#fed7aa"/>
|
||||
<path d="M54 46h28M54 62h28" stroke="#9a3412" stroke-width="8" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 305 B |
5
blueprints/shiori/template.toml
Normal file
5
blueprints/shiori/template.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "shiori"
|
||||
port = 8080
|
||||
host = "${domain}"
|
||||
54
meta.json
54
meta.json
@@ -1212,6 +1212,24 @@
|
||||
"monitoring"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "chroma",
|
||||
"name": "Chroma",
|
||||
"version": "1.5.6",
|
||||
"description": "Chroma is an open-source embedding database for AI applications, with persistent vector storage and a simple HTTP API.",
|
||||
"logo": "chroma.svg",
|
||||
"links": {
|
||||
"github": "https://github.com/chroma-core/chroma",
|
||||
"website": "https://www.trychroma.com/",
|
||||
"docs": "https://docs.trychroma.com/"
|
||||
},
|
||||
"tags": [
|
||||
"ai",
|
||||
"vector-database",
|
||||
"embeddings",
|
||||
"database"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "chromium",
|
||||
"name": "Chromium",
|
||||
@@ -3554,6 +3572,24 @@
|
||||
"ai"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "languagetool",
|
||||
"name": "LanguageTool",
|
||||
"version": "6.6",
|
||||
"description": "LanguageTool is an open-source grammar, style, and spell checker that can run as a self-hosted HTTP service.",
|
||||
"logo": "languagetool.svg",
|
||||
"links": {
|
||||
"github": "https://github.com/languagetool-org/languagetool",
|
||||
"website": "https://languagetool.org/",
|
||||
"docs": "https://dev.languagetool.org/http-server"
|
||||
},
|
||||
"tags": [
|
||||
"writing",
|
||||
"grammar",
|
||||
"spellcheck",
|
||||
"api"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "lavalink",
|
||||
"name": "Lavalink",
|
||||
@@ -5741,6 +5777,24 @@
|
||||
"file-system"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "shiori",
|
||||
"name": "Shiori",
|
||||
"version": "v1.8.0-2-g585ea34",
|
||||
"description": "Shiori is a simple self-hosted bookmark manager with offline archive support and a web interface.",
|
||||
"logo": "shiori.svg",
|
||||
"links": {
|
||||
"github": "https://github.com/go-shiori/shiori",
|
||||
"website": "https://go-shiori.github.io/shiori/",
|
||||
"docs": "https://go-shiori.github.io/shiori/"
|
||||
},
|
||||
"tags": [
|
||||
"bookmarks",
|
||||
"read-it-later",
|
||||
"archiving",
|
||||
"self-hosted"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "shlink",
|
||||
"name": "Shlink",
|
||||
|
||||
Reference in New Issue
Block a user