Merged
Conversation
Signed-off-by: John E <jeis4wpi@outlook.com>
abiosoft
approved these changes
Feb 11, 2026
Owner
Definitely, contributions are always welcomed. |
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Feb 23, 2026
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [abiosoft/colima](https://github.com/abiosoft/colima) | patch | `v0.10.0` → `v0.10.1` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>abiosoft/colima (abiosoft/colima)</summary> ### [`v0.10.1`](https://github.com/abiosoft/colima/releases/tag/v0.10.1) [Compare Source](abiosoft/colima@v0.10.0...v0.10.1) #### Highlights This is an incremental release with support for [Docker Model Runner](https://docs.docker.com/model-runner/) and improvements to the AI functionality introduced in [v0.10.0](https://github.com/abiosoft/colima/releases/tag/v0.10.0). ##### Docker Model Runner Colima now supports Docker Model Runner as an AI model runner backend. Docker Model Runner is now the **default** due to its simpler requirements. However, Ramalama can still be used. ```sh # run a model (uses docker runner by default) colima model run gemma3 # serve a model, chat interface available at localhost:8080 colima model serve gemma3 # explicitly specify the runner colima model run gemma3 --runner docker colima model run gemma3 --runner ramalama # set the runner at start time colima start --model-runner ramalama ``` The runner can be configured via: - `--runner` flag on `colima model` commands - `--model-runner` flag at `colima start` - `modelRunner` in the configuration file #### Other Updates - The `DOCKER_CONFIG` environment variable is now respected. #### Commits - chore: propose fix a typo by [@​jeis4wpi](https://github.com/jeis4wpi) in [#​1506](abiosoft/colima#1506) - docs: add install instructions for krunkit by [@​alanpmullane](https://github.com/alanpmullane) in [#​1511](abiosoft/colima#1511) - docker: respect DOCKER\_CONFIG by [@​utkarshgupta137](https://github.com/utkarshgupta137) in [#​1512](abiosoft/colima#1512) - ai: add docker model runner. by [@​abiosoft](https://github.com/abiosoft) in [#​1513](abiosoft/colima#1513) - ai: choose alternate available ports for serving API/webui by [@​abiosoft](https://github.com/abiosoft) in [#​1515](abiosoft/colima#1515) - ai: refactor model runners by [@​abiosoft](https://github.com/abiosoft) in [#​1516](abiosoft/colima#1516) - core: update disk images by [@​abiosoft](https://github.com/abiosoft) in [#​1517](abiosoft/colima#1517) #### New Contributors - [@​jeis4wpi](https://github.com/jeis4wpi) made their first contribution in [#​1506](abiosoft/colima#1506) - [@​alanpmullane](https://github.com/alanpmullane) made their first contribution in [#​1511](abiosoft/colima#1511) - [@​utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in [#​1512](abiosoft/colima#1512) **Full Changelog**: <abiosoft/colima@v0.10.0...v0.10.1> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever MR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi40IiwidXBkYXRlZEluVmVyIjoiNDMuMjYuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6OnBhdGNoIl19-->
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.
propose fix a typo
Does this help?