euIaxs22 commited on
Commit
2491256
·
verified ·
1 Parent(s): 88420b3

Create compose.yaml

Browse files
Files changed (1) hide show
  1. compose.yaml +24 -0
compose.yaml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ services:
2
+ vincie:
3
+ image: Aduc:sdr
4
+ deploy:
5
+ resources:
6
+ reservations:
7
+ devices:
8
+ - capabilities: [gpu]
9
+ ports:
10
+ - "7860:7860"
11
+ environment:
12
+ GRADIO_SERVER_PORT: "7860"
13
+ HF_HUB_CACHE: "/data/.cache/huggingface/hub"
14
+ CKPT_ROOT: "/data/ckpt/VINCIE-3B"
15
+ volumes:
16
+ - vincie_hub:/data/.cache/huggingface/hub
17
+ - vincie_ckpt:/data/ckpt/VINCIE-3B
18
+ - vincie_out:/app/outputs
19
+ - vincie_repo:/app/VINCIE
20
+ volumes:
21
+ vincie_hub: {}
22
+ vincie_ckpt: {}
23
+ vincie_out: {}
24
+