diff --git a/AI_Containers/ollama/compose.yaml b/AI_Containers/ollama/compose.yaml new file mode 100644 index 0000000..8bb10f8 --- /dev/null +++ b/AI_Containers/ollama/compose.yaml @@ -0,0 +1,18 @@ +services: + ollama: + image: ollama/ollama + ports: + - "11434:11434" + volumes: + - /srv/docker/ollama:/root/.ollama + + webui: + image: ghcr.io/open-webui/open-webui:main + ports: + - "3855:8080" + environment: + - OLLAMA_BASE_URL=http://ollama:11434 + depends_on: + - ollama + volumes: + - /srv/docker/ollama/webui:/app/data \ No newline at end of file