Skip to content

Instantly share code, notes, and snippets.

View paulo-raoni's full-sized avatar

Paulo Raoni paulo-raoni

  • Rio de Janeiro - Brasil
View GitHub Profile

Docker Windows 10 Home Edition installation

Installation Failed: one prerequisite is not fulfilled

Docker Desktop requires Windows 10 Pro or Enterprise version 15063 to run.

The reason why Docker needs Windows Pro or Enterprise is that they are using Hyper-V and Containers. Let’s install these.

SOLUTION:

Install Hyper-V and Containers

@paulo-raoni
paulo-raoni / gitHelper.md
Last active August 7, 2020 21:37
Git Helper Commands

Commands (alternatives) to delete all branchs (locally) except master and developer:

git branch | grep -v "master\|developer" | xargs git branch -D

git branch -D git branch | grep -vE 'master|developer'

Command to delete remote branch:

git push origin --delete