# Software Factory — Docker Compose
#
# Start with:
#   docker compose up -d
#
# The web UI (chat + Kanban) will be available at http://localhost:4287

services:
  sfactory-code:
    image: squrl-labs/sfactory-code
    ports:
      - "4287:4287"
    volumes:
      - ./data:/data
    environment:
      - PORT=4287
    restart: unless-stopped
