Initial resurrection kit — 81 scripts, 62 references, configs, systemd units, crons, Docker compose files, Caddy config, master README
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
openwebui:
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
container_name: openwebui
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- openwebui_data:/app/backend/data
|
||||
environment:
|
||||
- WEBUI_SECRET_KEY=your_secret_key
|
||||
restart: unless-stopped
|
||||
|
||||
litellm:
|
||||
build: ../litellm
|
||||
container_name: litellm
|
||||
ports:
|
||||
- "4000:4000"
|
||||
volumes:
|
||||
- litellm_data:/app/data
|
||||
restart: unless-stopped
|
||||
|
||||
mcp-email:
|
||||
build: ../mcp-email
|
||||
container_name: mcp-email
|
||||
ports:
|
||||
- "8902:8902"
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
openwebui_data:
|
||||
litellm_data:
|
||||
Reference in New Issue
Block a user