AgentIC / docker-compose.yml
vxkyyy's picture
feat: rewarding build UX + Docker fixes + web docs cleanup
1595c92
services:
agentic:
build:
context: .
dockerfile: Dockerfile
image: agentic:local
container_name: agentic_local
ports:
- "7860:7860"
env_file:
- .env
volumes:
- ./artifacts:/app/artifacts
- ./training:/app/training
- ./designs:/app/designs
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:7860/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 20s