forked from lllyasviel/FramePack
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (25 loc) · 820 Bytes
/
docker-compose.yml
File metadata and controls
25 lines (25 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
services:
studio:
build:
# modify this if you are building the image locally and need a different CUDA version
args:
- CUDA_VERSION=12.4.1
# modify the tag here if you need a different CUDA version or branch
image: colinurbs/fp-studio:cuda12.4-latest-develop
restart: unless-stopped
ports:
- "7860:7860"
volumes:
- "./loras:/app/loras"
- "./outputs:/app/outputs"
- "./.framepack:/app/.framepack"
- "./modules/toolbox/model_esrgan:/app/modules/toolbox/model_esrgan"
- "./modules/toolbox/model_rife:/app/modules/toolbox/model_rife"
- "$HOME/.cache/huggingface:/app/hf_download"
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]