File size: 316 Bytes
138dfc1
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '3.8'

services:
  ai-image-gen:
    build: .
    ports:
      - "7860:7860"
    volumes:
      - ./models:/app/models
    environment:
      - PUBLIC_API_KEY=${PUBLIC_API_KEY:-demo-key-123456}
      - HF_TOKEN=${HF_TOKEN:-}
      - SPACE_URL=${SPACE_URL:-http://localhost:7860}
    restart: unless-stopped