Feature/ollama models - #14
Merged
Merged
Conversation
…ration - Created `.devcontainer/devcontainer.json` for VS Code integration with Ollama models. - Added `docker-compose.yml` for orchestrating Ollama and model services. - Introduced `README.md` with usage instructions and examples for Ollama models. - Implemented `docker-compose.ollama.yml` for a complete Docker Compose setup. - Developed `quick-start-ollama.sh` script for automated setup of Ollama with pre-loaded models. - Added `build-ollama-volume.sh` script to build and publish Ollama model data volume to GHCR.
…nd update documentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new workflow and supporting documentation for building, publishing, and using a pre-loaded Ollama models data volume container. It adds example configurations and usage patterns for development environments, including Docker Compose and VS Code Dev Containers, and improves documentation for onboarding and troubleshooting.
Ollama Models Volume Workflow and Usage
Workflow automation:
.github/workflows/build-ollama-models.ymlto automate building and publishing a container image with pre-pulled Ollama models, supporting custom model selection and tagging, and integrating security scanning and release summaries.Example configurations:
examples/docker-compose.ollama.ymlandexamples/.devcontainer/docker-compose.ymlfor multi-container setups with Ollama, models data volume, and a development container, including health checks and environment variable support. [1] [2]examples/.devcontainer/devcontainer.jsonfor VS Code Dev Container integration, enabling Ollama API access and AI-assisted coding via the Continue extension.Documentation and onboarding:
examples/README.mdand updated mainREADME.mdto document quick start instructions, usage patterns, troubleshooting, environment-specific examples, and links to main Ollama models volume documentation. [1] [2]These changes provide a standardized, reproducible way to use Ollama models in development and restricted environments, with clear instructions and automation for building and consuming the models data volume.