From 3b4212729107ea580dfaffa0b13a21809aeae515 Mon Sep 17 00:00:00 2001 From: Shang Chieh Tseng Date: Fri, 11 Apr 2025 21:14:33 +0800 Subject: [PATCH] Add a docker compose file for ollama37 --- ollama37/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ollama37/docker-compose.yml diff --git a/ollama37/docker-compose.yml b/ollama37/docker-compose.yml new file mode 100644 index 0000000..9491bfb --- /dev/null +++ b/ollama37/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3.8' + +services: + ollama: + image: dogkeeper886/ollama37 + container_name: ollama37 + ports: + - "11434:11434" + volumes: + - ollama:/root/.ollama + restart: unless-stopped + +volumes: + ollama: +