Skip to content

Instantly share code, notes, and snippets.

View bobziuchkovski's full-sized avatar

Bob Ziuchkovski bobziuchkovski

View GitHub Profile
@bobziuchkovski
bobziuchkovski / how-to-start-colima-automatically-on-macos.md
Last active August 28, 2023 17:13 — forked from fardjad/how-to-start-colima-automatically-on-macos.md
[How to start Colima automatically on macOS] Instructions for starting Colima automatically on macOS similar to Docker Desktop #macos #colima #docker
# Create launcher script
cat <<-EOF | sudo tee /usr/local/bin/colima-start-fg
#!/bin/bash

export PATH="/opt/homebrew/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"

function shutdown() {
  colima stop
  exit 0