Skip to content

Instantly share code, notes, and snippets.

@ko-sasaki
Created July 14, 2025 06:46
Show Gist options
  • Save ko-sasaki/d5918f50a92951b8d921fb63889746b8 to your computer and use it in GitHub Desktop.
Save ko-sasaki/d5918f50a92951b8d921fb63889746b8 to your computer and use it in GitHub Desktop.
local llm
name: local-llm
services:
ollama:
image: ollama/ollama
container_name: ollama
ports:
- "11434:11434"
volumes:
- ollama:/root/.ollama
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
ports:
- 3000:8080
volumes:
- open-webui:/app/backend/data
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
ollama:
open-webui:
@ko-sasaki
Copy link
Author

ko-sasaki commented Jul 14, 2025

下記、コマンドを実行で、deepseek-r1がローカル環境で使えるようになります

ollama run deepseek-r1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment