mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-15 02:45:24 +02:00
* Add Ollama Chat Tone blueprint with Docker configuration, SVG logo, and metadata * Update .gitignore and replace Ollama Chat Tone SVG with new design * Add Ollama Chat Tone metadata to meta.json * Update GitHub link in meta.json for Ollama Chat Tone * Fix environment variable casing in docker-compose.yml and update template.toml with default values * Remove duplicate .DS_Store entry from .gitignore * Delete .DS_Store Delete .DS_Store
33 lines
770 B
TOML
33 lines
770 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
session_secret = "change-me......32charsOrMore"
|
|
ollama_url = "http://your-ollama-host:11434"
|
|
ollama_timeout = "5"
|
|
default_model = "llama3.2"
|
|
basic_auth_user = "admin"
|
|
basic_auth_password = "change-me"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "ollama-chat-tone"
|
|
port = 8080
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
APP_NAME = "Ollama Chat Tone"
|
|
ADDR = ":8080"
|
|
SESSION_SECRET = "${session_secret}"
|
|
DB_PATH = "/data/app.db"
|
|
OLLAMA_URL = "${ollama_url}"
|
|
OLLAMA_TIMEOUT = "${ollama_timeout}"
|
|
DEFAULT_MODEL = "${default_model}"
|
|
OPEN_BROWSER = "false"
|
|
BASIC_AUTH_USER = "${basic_auth_user}"
|
|
BASIC_AUTH_PASSWORD = "${basic_auth_password}"
|
|
|
|
[[config.mounts]]
|
|
serviceName = "ollama-chat-tone"
|
|
filePath = "/data/app.db"
|
|
content = ""
|