Add Doris Schoolhouse and clean pending homelab changes

This commit is contained in:
Fizzlepoof
2026-05-15 21:58:42 +00:00
parent 3aad8d037b
commit 383cd41ae7
60 changed files with 3145 additions and 20 deletions

View File

@@ -0,0 +1,30 @@
services:
doris-schoolhouse:
container_name: doris-schoolhouse
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "8091:8091"
env_file:
- .env
environment:
TZ: ${TZ}
SCHOOLHOUSE_HOST: 0.0.0.0
SCHOOLHOUSE_PORT: 8091
networks:
- schoolhouse-net
volumes:
- /opt/doris-schoolhouse/data:/data
- /home/fizzlepoof/.openclaw/workspace:/workspace/.openclaw-workspace:ro
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1:8091/api/health || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
networks:
schoolhouse-net:
driver: bridge