forked from Kaouthia/ComfyUI-Docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (45 loc) · 1.51 KB
/
docker-compose.yml
File metadata and controls
60 lines (45 loc) · 1.51 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
services:
comfyui:
container_name: comfyui
environment:
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=all,compute,utility
- CLI_ARGS=--lowvram --force-fp16
- ONNXRUNTIME_EXECUTION_PROVIDER=CPUExecutionProvider
image: hikage/comfyui-docker:latest
ports:
- '8188:8188'
restart: unless-stopped
runtime: nvidia
stdin_open: True
tty: True
volumes:
# persist your models:
- /mnt/.ix-apps/app_mounts/comfyui/models:/opt/comfyui/models
# persist your input content:
- /mnt/.ix-apps/app_mounts/comfyui/input:/opt/comfyui/input
# persist your output content:
- /mnt/.ix-apps/app_mounts/comfyui/output:/opt/comfyui/output
# persist your custom_nodes content:
- /mnt/.ix-apps/app_mounts/comfyui/custom_nodes:/opt/comfyui/custom_nodes
# persist user settings:
- /mnt/.ix-apps/app_mounts/comfyui/user:/opt/comfyui/user
x-notes: >
# comfyui-docker
**Source** :
[https://github.com/Elenedeath/ComfyUI-Docker](https://github.com/Elenedeath/ComfyUI-Docker)
**Image Docker** : hikage/comfyui-docker:latest
## Security
**Read the following security precautions to ensure that you wish to continue
using this application.**
---
## Bug Reports and Feature Requests
If you find a bug in this app or have an idea for a new feature, please file
an issue at
https://github.com/Elenedeath/ComfyUI-Docker
x-portals:
- host: 0.0.0.0
name: Web UI
path: /
port: 8188
scheme: http