clawft-kernel 0.5.0

WeftOS kernel: boot sequence, process table, service registry, and health subsystem
version: "3.9"
services:
  weaver:
    build:
      context: ../..
      dockerfile: crates/clawft-kernel/Dockerfile.alpine
    ports:
      - "18789:18789"
    volumes:
      - weft-data:/data
    environment:
      - CLAWFT_CONFIG=/data/config.json
    depends_on:
      - redis
  redis:
    image: redis:7-alpine
    ports:
      - "6379:6379"
volumes:
  weft-data: