Resolved 48 identified issues across 5 remediation batches: Critical Fixes (2/2 = 100%): - Removed duplicate "System Architec" directory with 4 archived files - Fixed broken PARA Notes wikilinks in 2 Outline.md files High Priority (14/15 = 93%): - Consolidated 10+ duplicate file pairs to canonical locations - Added frontmatter to 30 files in 200-area (now 100% coverage) - Relocated orphaned image with updated reference - Removed security-sensitive file duplicates Medium Priority (32/41 = 78%): - Deleted 4 empty files (0-15 bytes each) - Relocated misplaced files to proper PARA categories - Improved archive organization structure File Changes: - Modified: 33 files (frontmatter + wikilink fixes) - Moved: 16 files (to archive or new locations) - Deleted: 6 files (duplicates after archival) - Created: 25 files (archived copies + documentation) Vault Health Improvement: - Frontmatter coverage: 43% → 75% - Broken wikilinks: 2 → 0 - Duplicate files: 10+ → 0 - Empty files: 4 → 0 - Overall health score: 6.5/10 → 8.5/10 Documentation: - Created comprehensive remediation plan and batch reports in copilot/ - All changes tracked with detailed change reports - No data loss - duplicates archived, not deleted 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
821 B
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: