Skip to content

Instantly share code, notes, and snippets.

@mayukojpn
Created February 19, 2026 09:06
Show Gist options
  • Select an option

  • Save mayukojpn/cdea606eca424fcd88e734e16ab6ff44 to your computer and use it in GitHub Desktop.

Select an option

Save mayukojpn/cdea606eca424fcd88e734e16ab6ff44 to your computer and use it in GitHub Desktop.
Ollama Docker Container
# コンテナ起動コマンド
# docker compose -f docker-compose.ollama.yml up -d
services:
ollama:
image: ollama/ollama:latest
container_name: ollama
ports:
# localhostのみにバインド(セキュリティ)
- "127.0.0.1:11434:11434"
volumes:
- ollama-data:/root/.ollama
restart: unless-stopped
networks:
- openclaw-network
volumes:
ollama-data:
networks:
openclaw-network:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment