File size: 499 Bytes
d36f3b6
 
 
 
 
 
 
 
 
 
 
 
 
 
1595c92
d36f3b6
1595c92
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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