This commit is contained in:
2025-11-30 12:34:45 +01:00
parent e5f390ad42
commit 13e6dd903a
125 changed files with 5482 additions and 28 deletions

3
__swarm/ollama/.env Executable file
View File

@@ -0,0 +1,3 @@
APPNAME=nextcloud
RESTART=always
DOCKER_REGISTRY=r.sectorq.eu/library/

View File

@@ -0,0 +1,19 @@
services:
ollama:
image: ${DOCKER_REGISTRY:-}ollama/ollama:rocm
container_name: ollama
restart: ${RESTART:-unless-stopped}
devices:
- "/dev/kfd"
- "/dev/dri"
volumes:
- ollama_models:/root/.ollama
environment:
- HSA_OVERRIDE_GFX_VERSION=11.0.0
ports:
- "11434:11434"
dns:
- "8.8.8.8"
volumes:
ollama_models: