Last active
March 22, 2026 21:10
-
-
Save AwakenTheJaken/ce1da8bca3bba003929cce20b3b519d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "_comment": "Ollama + Open WebUI Autonomous Egg", | |
| "meta": { | |
| "version": "PTDL_v2" | |
| }, | |
| "exported_at": "2026-03-22T00:00:00+00:00", | |
| "name": "Ollama Chat AI", | |
| "author": "awakenthejaken", | |
| "description": "Fully autonomous Ollama server with Open WebUI chat interface. No manual configuration required.", | |
| "docker_images": { | |
| "ollama_webui": "ghcr.io/open-webui/open-webui:ollama" | |
| }, | |
| "file_denylist": [], | |
| "startup": "bash start.sh", | |
| "config": { | |
| "files": "{}", | |
| "startup": "{\n \"done\": \"Uvicorn running\",\n \"userInteraction\": []\n}", | |
| "logs": "{}", | |
| "stop": "stop" | |
| }, | |
| "scripts": { | |
| "installation": { | |
| "script": "#!/bin/bash\nmkdir -p /home/container/data\nmkdir -p /home/container/models\nexit 0", | |
| "container": "ghcr.io/pelican-eggs/installers:ubuntu", | |
| "entrypoint": "bash" | |
| } | |
| }, | |
| "variables": [ | |
| { | |
| "name": "Default AI Model", | |
| "description": "Model automatically downloaded and loaded on first start", | |
| "env_variable": "OLLAMA_MODEL", | |
| "default_value": "llama3", | |
| "user_viewable": true, | |
| "user_editable": true, | |
| "rules": "required|string|max:30" | |
| }, | |
| { | |
| "name": "WebUI Port", | |
| "description": "Port for web interface", | |
| "env_variable": "PORT", | |
| "default_value": "3000", | |
| "user_viewable": true, | |
| "user_editable": true, | |
| "rules": "required|numeric" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment