Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| #!/bin/bash | |
| # This script finds the files with the most changes in a Git repository, tracking renames and excluding binary files and files with zero changes | |
| # Check for the presence of a Git repository | |
| if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then | |
| echo "This script must be run inside a Git repository." | |
| exit 1 | |
| fi |
| #if UNITY_EDITOR | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using UnityEditor; | |
| using System.Reflection; | |
| using System.IO; | |
| using System.Text; | |
| public class EditorFontResizer : EditorWindow { |
| import * as React from "react" | |
| import { useState, useEffect } from "react" | |
| // Hook | |
| let cachedScripts = [] | |
| export function useScript(src) { | |
| // Keeping track of script loaded and error state | |
| const [state, setState] = useState({ | |
| loaded: false, |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "os" | |
| env "github.com/TV4/env" | |
| graceful "github.com/TV4/graceful" |
| package main | |
| import ( | |
| "context" | |
| "crypto/tls" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "time" |
| package main | |
| import ( | |
| "crypto" | |
| "crypto/x509" | |
| "encoding/pem" | |
| "fmt" | |
| "github.com/dgrijalva/jwt-go" | |
| "io/ioutil" | |
| "time" |
This is a simple launchd config that will start your default docker-machine on startup. You can customize the machine that is started by updating lines 11 and 16 with the correct machine name.
com.docker.machine.default.plist below to ~/Library/LaunchAgents/com.docker.machine.default.plist.launchctl load ~/Library/LaunchAgents/com.docker.machine.default.plist| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "io/ioutil" | |
| "net" | |
| "os" | |
| "strings" |
This script is no longer required with Docker for Mac which includes an option to run Docker at startup and doesn't use docker-machine to administer the local Docker engine.
docker-machine create --driver virtualbox default (this is the default with Docker toolkit).