Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DOCKER_README.MD #716

Merged
merged 1 commit into from
Jun 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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