Upload docker-compose.yaml with huggingface_hub
Browse files- docker-compose.yaml +24 -0
docker-compose.yaml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
workerflux:
|
| 3 |
+
image: 5452781/workerflux:v0.4
|
| 4 |
+
# build:
|
| 5 |
+
# # network: host
|
| 6 |
+
# context: .
|
| 7 |
+
# args:
|
| 8 |
+
# HTTPS_PROXY: "http://192.168.23.11:1087"
|
| 9 |
+
# HTTP_PROXY: "http://192.168.23.11:1087"
|
| 10 |
+
# platforms:
|
| 11 |
+
# - "linux/amd64"
|
| 12 |
+
# tags:
|
| 13 |
+
# - "5452781/workerflux:v0.1"
|
| 14 |
+
# restart: always
|
| 15 |
+
environment:
|
| 16 |
+
CAN_CKPT_DOWNLOAD_FROM_URL: "false"
|
| 17 |
+
HTTPS_PROXY: "http://192.168.23.11:1087"
|
| 18 |
+
HTTP_PROXY: "http://192.168.23.11:1087"
|
| 19 |
+
ports:
|
| 20 |
+
- 8188:8188
|
| 21 |
+
volumes:
|
| 22 |
+
- ./src/comfyui/output:/comfyui/output
|
| 23 |
+
- ./src/comfyui/input:/comfyui/input
|
| 24 |
+
command: sleep 3600
|