You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cask command no longer works, adjusting it and there is a $ in front of some of the commands so removing these so they can be directly copied and pasted into the terminal
Copy file name to clipboardExpand all lines: DOCKER_README.MD
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This guide is made for OSX users.
5
5
6
6
First install Docker using [Homebrew](https://brew.sh/)
7
7
```
8
-
$ brew install docker
8
+
brew install docker
9
9
```
10
10
11
11
You can then install [Docker Desktop](https://docs.docker.com/get-docker/) if you wish, or use `docker-machine`. As we prefer the second option, we will only document this one.
@@ -14,22 +14,22 @@ You can then install [Docker Desktop](https://docs.docker.com/get-docker/) if yo
14
14
15
15
Install `docker-machine`
16
16
```
17
-
$ brew install docker-machine
17
+
brew install docker-machine
18
18
```
19
19
20
20
Then install [VirtualBox](https://www.virtualbox.org/) with [Homebrew Cask](https://github.com/Homebrew/homebrew-cask) to get a driver for your Docker machine
21
21
```
22
-
$ brew cask install virtualbox
22
+
brew install virtualbox --cask
23
23
```
24
24
25
25
You may need to enter your password and authorize the application in your `System Settings` > `Security & Privacy`.
26
26
27
27
Create now a new machine, set it up as default and connect your shell to it (here we use zsh. The commands should anyway be displayed in each steps' output)
0 commit comments