ultisuite-backend/deploy/openwebui/docker-compose.openwebui.yml
R3D347HR4Y 1e4e373f93
Some checks are pending
CI / Go tests (push) Waiting to run
CI / Integration tests (push) Waiting to run
CI / DB migrations (push) Waiting to run
feat(branding): update UltiAI branding and configuration
- Added WEBUI_NAME variable to .env.example and Docker Compose for consistent branding.
- Enhanced Nginx configuration with sub_filters to replace 'Open WebUI' with 'UltiAI' in responses.
- Introduced custom CSS for UltiAI branding and added logo and favicon assets.
- Implemented routing adjustments in Nginx to support SPA navigation without prefix issues.
2026-06-13 22:55:35 +02:00

51 lines
1.8 KiB
YAML

# Optional overlay: docker compose -f docker-compose.yml -f openwebui/docker-compose.openwebui.yml up -d
services:
openwebui:
image: ghcr.io/open-webui/open-webui:main
restart: unless-stopped
environment:
WEBUI_AUTH: "true"
WEBUI_AUTH_TRUSTED_EMAIL_HEADER: X-Ulti-User-Email
WEBUI_AUTH_TRUSTED_NAME_HEADER: X-Ulti-User-Name
WEBUI_AUTH_TRUSTED_ROLE_HEADER: X-Ulti-User-Role
ENABLE_PERSISTENT_CONFIG: "false"
ENABLE_DIRECT_CONNECTIONS: "false"
BYPASS_MODEL_ACCESS_CONTROL: "true"
WEBUI_NAME: UltiAI
OPENAI_API_BASE_URL: http://ultid:8080/api/v1/ai
OPENAI_API_KEY: ${AI_GATEWAY_API_KEY:-ulti-gateway}
WEBUI_URL: http://${DOMAIN:-localhost}/ai
WEBUI_SECRET_KEY: ${WEBUI_SECRET_KEY:-changeme-openwebui-dev-secret}
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/openwebui
USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED: "false"
volumes:
- openwebui_data:/app/backend/data
- ../services/openwebui/pipelines:/app/pipelines/custom:ro
- ../services/openwebui/static/logo.png:/app/backend/open_webui/static/logo.png:ro
- ../services/openwebui/static/favicon.png:/app/backend/open_webui/static/favicon.png:ro
- ../services/openwebui/static/custom.css:/app/backend/open_webui/static/custom.css:ro
networks:
- ulti-net
depends_on:
postgres:
condition: service_healthy
ultid:
condition: service_started
ultimail-mcp:
build:
context: ../services/ultimail-mcp
dockerfile: Dockerfile
restart: unless-stopped
environment:
ULTID_API_URL: http://ultid:8080/api/v1
MCP_PORT: "3100"
networks:
- ulti-net
depends_on:
ultid:
condition: service_started
volumes:
openwebui_data: