Skip to content

Commit d49ef29

Browse files
Replace Docker with Rancher (#21)
Docker changed their license and now requires payment for use by companies over 250 employees. Vendasta has decided to switch to Rancher Desktop which is an open source alternative. It is a drop in replacement for Docker Desktop. https://rancherdesktop.io/
1 parent 73c14c0 commit d49ef29

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,10 @@ brew install --cask google-chrome
440440

441441

442442
<details>
443-
<summary>Docker for Mac</summary>
443+
<summary>Rancher Desktop (Docker Desktop alternative)</summary>
444444

445445
```sh
446-
brew install --cask docker
446+
brew install --cask rancher
447447
```
448448
</details>
449449

setup-new-computer.sh

+8-2
Original file line numberDiff line numberDiff line change
@@ -404,9 +404,15 @@ printHeading "Installing Applications"
404404

405405
if [[ -d "/Applications/Docker.app" ]]; then
406406
printDivider
407-
echo "✔ Docker already installed. Skipping"
407+
printStep "Uninstall Docker desktop for Mac" "brew uninstall --cask docker"
408+
echo ""
409+
fi
410+
411+
if [[ -d "/Applications/Rancher Desktop.app" ]]; then
412+
printDivider
413+
echo "✔ Rancher already installed. Skipping"
408414
else
409-
printStep "Docker for Mac" "brew install --cask docker"
415+
printStep "Rancher Desktop (Docker Desktop alternative)" "brew install --cask rancher"
410416
fi
411417

412418
if [[ -d "/Applications/Postman.app" ]]; then

0 commit comments

Comments
 (0)