File size: 471 Bytes
b3778b2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
499671b
b3778b2
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
  backend:
    build:
      context: ./backend
      dockerfile: Dockerfile
    ports:
      - "8000:8000"
    volumes:
      - sam2_models:/app/models
      - ./frontend/dist:/frontend/dist:ro
      - ./backend/data:/app/data
    env_file:
      - ./backend/.env
    environment:
      - SAM2_UNLOAD_AFTER_USE=0
      - GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
    restart: unless-stopped

volumes:
  sam2_models:
    driver: local