Compare commits
2 Commits
cc50960bae
...
3b94f7238d
| Author | SHA1 | Date | |
|---|---|---|---|
| 3b94f7238d | |||
| 876155a2fe |
@@ -3,6 +3,6 @@ There are custom dockerfiles in here that can be used to pull and compile differ
|
|||||||
In order to use this repos please just copy the docker-compose
|
In order to use this repos please just copy the docker-compose
|
||||||
|
|
||||||
ONLY TESTED WITH AMPERE ALTRA USING RTX40 SERIES
|
ONLY TESTED WITH AMPERE ALTRA USING RTX40 SERIES
|
||||||
|
|
||||||
https://hub.docker.com/r/mistox/uvicorn-ampere
|
https://hub.docker.com/r/mistox/uvicorn-ampere
|
||||||
https://hub.docker.com/r/mistox/comfyui-ampere
|
https://hub.docker.com/r/mistox/comfyui-ampere
|
||||||
+1
-1
@@ -4,7 +4,7 @@ FROM nvcr.io/nvidia/pytorch:25.05-py3 AS build-deps
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Get release version from https://github.com/comfyanonymous/ComfyUI/releases
|
# Get release version from https://github.com/comfyanonymous/ComfyUI/releases
|
||||||
ARG ComfyUI_Release=0.3.59
|
ARG ComfyUI_Release=0.3.71
|
||||||
|
|
||||||
RUN pip install imageio controlnet_aux
|
RUN pip install imageio controlnet_aux
|
||||||
|
|
||||||
|
|||||||
+4
-16
@@ -1,23 +1,17 @@
|
|||||||
services:
|
services:
|
||||||
ollama:
|
ollama:
|
||||||
volumes:
|
|
||||||
- ./data/ollama/ollama:/root/.ollama
|
|
||||||
container_name: ai-ollama
|
container_name: ai-ollama
|
||||||
|
runtime: nvidia
|
||||||
pull_policy: always
|
pull_policy: always
|
||||||
tty: true
|
tty: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: docker.io/ollama/ollama:latest
|
image: docker.io/ollama/ollama:latest
|
||||||
|
volumes:
|
||||||
|
- ./data/ollama/ollama:/root/.ollama
|
||||||
ports:
|
ports:
|
||||||
- 7869:11434
|
- 7869:11434
|
||||||
environment:
|
environment:
|
||||||
- OLLAMA_KEEP_ALIVE=24h
|
- OLLAMA_KEEP_ALIVE=24h
|
||||||
deploy:
|
|
||||||
resources:
|
|
||||||
reservations:
|
|
||||||
devices:
|
|
||||||
- driver: nvidia
|
|
||||||
count: all
|
|
||||||
capabilities: [gpu]
|
|
||||||
|
|
||||||
ollama-webui:
|
ollama-webui:
|
||||||
image: ghcr.io/open-webui/open-webui:main
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
@@ -65,19 +59,13 @@ services:
|
|||||||
comfyui:
|
comfyui:
|
||||||
container_name: ai-comfyui
|
container_name: ai-comfyui
|
||||||
image: mistox/comfyui-ampere
|
image: mistox/comfyui-ampere
|
||||||
|
runtime: nvidia
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/comfyui/models:/app/comfyui/models
|
- ./data/comfyui/models:/app/comfyui/models
|
||||||
- ./data/comfyui/output:/app/comfyui/output
|
- ./data/comfyui/output:/app/comfyui/output
|
||||||
ports:
|
ports:
|
||||||
- 8010:8188
|
- 8010:8188
|
||||||
restart: always
|
restart: always
|
||||||
deploy:
|
|
||||||
resources:
|
|
||||||
reservations:
|
|
||||||
devices:
|
|
||||||
- driver: nvidia
|
|
||||||
count: all
|
|
||||||
capabilities: [gpu]
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
uvicorn-src:
|
uvicorn-src:
|
||||||
|
|||||||
Reference in New Issue
Block a user