Skip to content

Commit

Permalink
Update DOCKER_README.MD (#716)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
matthewbond committed Jun 26, 2023
1 parent 48fb056 commit d1cd56f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions DOCKER_README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This guide is made for OSX users.

First install Docker using [Homebrew](https://brew.sh/)
```
$ brew install docker
brew install docker
```

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.
Expand All @@ -14,22 +14,22 @@ You can then install [Docker Desktop](https://docs.docker.com/get-docker/) if yo

Install `docker-machine`
```
$ brew install docker-machine
brew install docker-machine
```

Then install [VirtualBox](https://www.virtualbox.org/) with [Homebrew Cask](https://github.com/Homebrew/homebrew-cask) to get a driver for your Docker machine
```
$ brew cask install virtualbox
brew install virtualbox --cask
```

You may need to enter your password and authorize the application in your `System Settings` > `Security & Privacy`.

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)

```
$ docker-machine create --driver virtualbox default
$ docker-machine env default
$ eval "$(docker-machine env default)"
docker-machine create --driver virtualbox default
docker-machine env default
eval "$(docker-machine env default)"
```

Now you're all setup to use our provided Docker image!
Expand Down

0 comments on commit d1cd56f

Please sign in to comment.