df
This commit is contained in:
parent
e8c09e0223
commit
0d2ae10e6c
1 changed files with 12 additions and 5 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
services:
|
services:
|
||||||
ollama:
|
ollama:
|
||||||
image: ollama/ollama:latest
|
image: ollama/ollama:latest
|
||||||
|
ports:
|
||||||
|
- "11434:11434"
|
||||||
volumes:
|
volumes:
|
||||||
- /DockerVol/ollama:/root/.ollama
|
- /DockerVol/ollama:/root/.ollama
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -19,7 +21,6 @@ services:
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- node.hostname == docker4
|
- node.hostname == docker4
|
||||||
endpoint_mode: dnsrr
|
|
||||||
# Uncomment for GPU support
|
# Uncomment for GPU support
|
||||||
# resources:
|
# resources:
|
||||||
# reservations:
|
# reservations:
|
||||||
|
|
@ -30,6 +31,8 @@ services:
|
||||||
|
|
||||||
open-webui:
|
open-webui:
|
||||||
image: ghcr.io/open-webui/open-webui:main
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
|
ports:
|
||||||
|
- "3000:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- /DockerVol/open-webui:/app/backend/data
|
- /DockerVol/open-webui:/app/backend/data
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -51,14 +54,17 @@ services:
|
||||||
- kuma.openwebui.http.name=Open WebUI
|
- kuma.openwebui.http.name=Open WebUI
|
||||||
- kuma.openwebui.http.url=http://open-webui:8080
|
- kuma.openwebui.http.url=http://open-webui:8080
|
||||||
- caddy=ai.netgrimoire.com
|
- caddy=ai.netgrimoire.com
|
||||||
- caddy.reverse_proxy={{upstreams 8080}}
|
- caddy.reverse_proxy=open-webui:8080
|
||||||
|
- caddy_ingress_network=netgrimoire
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- node.hostname == docker4
|
- node.hostname == docker4
|
||||||
endpoint_mode: dnsrr
|
|
||||||
|
|
||||||
qdrant:
|
qdrant:
|
||||||
image: qdrant/qdrant:latest
|
image: qdrant/qdrant:latest
|
||||||
|
ports:
|
||||||
|
- "6333:6333"
|
||||||
|
- "6334:6334"
|
||||||
volumes:
|
volumes:
|
||||||
- /DockerVol/qdrant:/qdrant/storage
|
- /DockerVol/qdrant:/qdrant/storage
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -77,10 +83,11 @@ services:
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- node.hostname == docker4
|
- node.hostname == docker4
|
||||||
endpoint_mode: dnsrr
|
|
||||||
|
|
||||||
n8n:
|
n8n:
|
||||||
image: n8nio/n8n:latest
|
image: n8nio/n8n:latest
|
||||||
|
ports:
|
||||||
|
- "5678:5678"
|
||||||
volumes:
|
volumes:
|
||||||
- /DockerVol/n8n:/home/node/.n8n
|
- /DockerVol/n8n:/home/node/.n8n
|
||||||
- /DockerVol/n8n/workflows:/home/node/.n8n/workflows
|
- /DockerVol/n8n/workflows:/home/node/.n8n/workflows
|
||||||
|
|
@ -112,10 +119,10 @@ services:
|
||||||
- kuma.n8n.http.url=http://n8n:5678
|
- kuma.n8n.http.url=http://n8n:5678
|
||||||
- caddy=n8n.netgrimoire.com
|
- caddy=n8n.netgrimoire.com
|
||||||
- caddy.reverse_proxy=n8n:5678
|
- caddy.reverse_proxy=n8n:5678
|
||||||
|
- caddy_ingress_network=netgrimoire
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
- node.hostname == docker4
|
- node.hostname == docker4
|
||||||
endpoint_mode: dnsrr
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
netgrimoire:
|
netgrimoire:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue