Spaces:
Running
Running
File size: 467 Bytes
eecb997 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | services:
roop-unleashed:
image: roop-unleashed:cpu
container_name: roop-unleashed
build:
context: .
dockerfile: Dockerfile.cpu
platform: linux/amd64
ports:
- "7860:7860"
volumes:
- ./output:/app/output
- ./models:/app/models
- ./models/insightface:/root/.insightface/models
- ./temp:/app/temp
- ./config.cpu.yaml:/app/config.yaml
command: python run.py
stdin_open: true
tty: true
|