Last active
January 3, 2025 03:21
-
-
Save levpa/ffe08883f77fb52ed4f4d4b4dc7de641 to your computer and use it in GitHub Desktop.
How to setup docker on windows without docker desktop
This file contains 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
# download docker and dockerd from here: https://download.docker.com/win/static/stable/x86_64/ | |
New-LocalGroup -Name 'docker-users' -Description 'docker Users Group' | |
Add-LocalGroupMember -Group 'Administrators' -Member ('docker-users') –Verbose | |
Add-LocalGroupMember -Group 'docker-users' -Member ('your-win-username','Administrators') –Verbose | |
# also install buildx https://github.com/docker/buildx | |
# and run teminal or VS Code with admin rights |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment