/ docker-compose.yml
docker-compose.yml
 1  services:
 2    swarmclaw:
 3      image: ghcr.io/swarmclawai/swarmclaw:latest
 4      build: .
 5      ports:
 6        - "3456:3456"
 7        - "3457:3457"
 8      volumes:
 9        - ./data:/app/data
10      env_file:
11        - path: ./.env.local
12          required: false
13      healthcheck:
14        test: ["CMD", "curl", "-f", "http://localhost:3456/api/healthz"]
15        interval: 30s
16        timeout: 5s
17        retries: 3
18        start_period: 10s
19      restart: unless-stopped