Skip to content

Instantly share code, notes, and snippets.

View kortov's full-sized avatar
💭
🍑 🍈 💻 🎸 🐒

Eugene Kortov kortov

💭
🍑 🍈 💻 🎸 🐒
View GitHub Profile
@talon
talon / README.md
Last active June 11, 2021 10:35
Install Docker On Windows 10 Home

Install Docker On Windows 10 Home

"Windows Home Docker Desktop requires Windows 10 Pro or Enterprise version 15063 to run." So says the Docker Installer however, the Docker forums beg to differ

The workaround is to manually image the Hyper-V and Containers features, then trick the installer into thinking you're using Windows Pro.

TL;DR

  1. clone this gist somewhere locally git clone https://gist.github.com/4191def376c9fecae78815454bfe661c.git windows_home_docker
  2. Run windows_home_containers.ps1 in an Administrative Powershell
@sixman9
sixman9 / groovyMap2List.txt
Created July 25, 2012 10:54
Turn/convert a map into a list in Groovy
def m = [a:b, c:d]
def l = []
m.each() { k, v -> l << k }
Alternatively:
def m = new TreeMap([a:b, c:d])
then use m.keySet().each() ...