forked from deepbeepmeep/Wan2GP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
32 lines (32 loc) · 718 Bytes
/
compose.yml
File metadata and controls
32 lines (32 loc) · 718 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
26
27
28
29
30
31
32
x-wan2gp-base: &wan2gp-base
container_name: Wan2GP
build: .
image: local/wan2gp:latest
ports:
- 7860:7860
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
services:
wan2gp-t2v:
<<: *wan2gp-base
entrypoint: ["python3.10", "wgp.py", "--t2v", "--listen"]
volumes:
- ./ckpts:/app/ckpts
- ./loras:/app/loras
- ./outputs:/app/outputs
profiles:
- t2v
wan2gp-i2v:
<<: *wan2gp-base
entrypoint: ["python3.10", "wgp.py", "--i2v", "--listen"]
volumes:
- ./ckpts:/app/ckpts
- ./loras_i2v:/app/loras_i2v
- ./outputs:/app/outputs
profiles:
- i2v