Files
vault-para/100-project/AI/open webui.md
windyboy daf4aa3dfa Add P.A.R.A. methodology documentation and restructure Personal folder
- Created Methodology.md to outline the P.A.R.A. system and its components.
- Added Outline.md for a structured overview of P.A.R.A. content.
- Documented PKM content organization decisions in PKM-Consolidation-Decision.md.
- Introduced Workflows.md to explain practical applications of P.A.R.A. in work scenarios.
- Moved sensitive information to security-sensitive folder and restructured the Personal folder to align with P.A.R.A. principles.
- Archived backup files including Matrix Me.md and TTG Cookies.md.
- Implemented a comprehensive refactor of the Personal folder to improve organization and security.
2025-12-29 15:37:17 +08:00

821 B

compose.yml

services:
  db:
    image: postgres:17-alpine
    container_name: oui-db
    restart: always
    environment:
      - POSTGRES_USER=webui
      - POSTGRES_PASSWORD=webui_password
      - POSTGRES_DB=open_webui
    volumes:
      - db_data:/var/lib/postgresql/data

  open-webui:
    image: ghcr.io/open-webui/open-webui:main
    container_name: oui
    restart: always
    ports:
      - "3000:8080"
    depends_on:
      - db
    extra_hosts:
      - "host.docker.internal:host-gateway"
    environment:
      - 'DATABASE_URL=postgresql://webui:webui_password@db:5432/open_webui'
      - 'OPENAI_API_BASE_URL=http://host.docker.internal:4000/v1'
      - 'OPENAI_API_KEY=sk-1234'
      - 'WEBUI_SECRET_KEY=super_secret_key'
    volumes:
      - oui_data:/app/data

volumes:
  db_data:
  oui_data: