weavegraph 0.3.0

Graph-driven, concurrent agent workflow framework with versioned state, deterministic barrier merges, and rich diagnostics.
Documentation
services:
  ollama:
    container_name: ollama
    image: ollama/ollama:latest
    volumes:
      - ollama_data:/root/.ollama
    ports:
      - "11434:11434"
    networks:
      - weavegraph
    restart: unless-stopped
    tty: true
    environment:
      - OLLAMA_KEEP_ALIVE=24h
      - OLLAMA_HOST=0.0.0.0

  postgres:
    container_name: weavegraph_postgres
    image: postgres:18-alpine
    environment:
      POSTGRES_USER: weavegraph
      POSTGRES_PASSWORD: weavegraph
      POSTGRES_DB: weavegraph_test
    ports:
      - "5432:5432"
    networks:
      - weavegraph
    restart: unless-stopped
    volumes:
      - postgres_data:/var/lib/postgresql/data
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U weavegraph -d weavegraph_test"]
      interval: 5s
      timeout: 5s
      retries: 5

volumes:
  ollama_data:
  postgres_data:

networks:
  weavegraph:
    name: weavegraph