Created
October 9, 2025 14:40
-
-
Save jmeiracorbal/4d3ddf0ae9120535c59b892dcf357d90 to your computer and use it in GitHub Desktop.
Uninstall OrbStack from macOS and comeback to Docker Desktop
This file contains hidden or 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
| # unistall orbstack first | |
| # if you install OrbStack, this app uses the same commands and replaces docker symlinks, | |
| # if you uninstall it, the docker commands doesn't work. You need to restore the symlinks. | |
| # remove old links orbstack | |
| sudo rm -f /usr/local/bin/docker /usr/local/bin/docker-compose /usr/local/bin/docker-buildx /usr/local/bin/docker-credential-desktop | |
| # create new links to docker desktop | |
| sudo ln -s /Applications/Docker.app/Contents/Resources/bin/docker /usr/local/bin/docker | |
| sudo ln -s /Applications/Docker.app/Contents/Resources/bin/docker-compose /usr/local/bin/docker-compose | |
| sudo ln -s /Applications/Docker.app/Contents/Resources/bin/docker-buildx /usr/local/bin/docker-buildx | |
| sudo ln -s /Applications/Docker.app/Contents/Resources/bin/docker-credential-desktop /usr/local/bin/docker-credential-desktop | |
| # reload shell config (if you use bash, reload your bashrc) | |
| source ~/.zprofile | |
| # check if docker is running | |
| docker --version | |
| docker ps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in my case i had some links left, this is how i handled them: