mirror of https://github.com/docker/docs.git
Update README.md
This commit is contained in:
parent
80f59e9413
commit
8914d18c9d
29
README.md
29
README.md
|
|
@ -25,6 +25,35 @@ Documentation for Windows [is available here](https://docs.docker.com/windows/st
|
|||
|
||||
Toolbox is currently unavailable for Linux; To get started with Docker on Linux, please follow the Linux [Getting Started Guide](https://docs.docker.com/linux/started/).
|
||||
|
||||
## Building the Docker Toolbox
|
||||
|
||||
Toolbox installers are built using Docker, so you'll need a Docker host set up. For example, using [Docker Machine](https://github.com/docker/machine):
|
||||
|
||||
```
|
||||
$ docker-machine create -d virtualbox toolbox
|
||||
$ eval "$(docker-machine env toolbox)"
|
||||
```
|
||||
|
||||
Then, to build the Toolbox for both platforms:
|
||||
|
||||
```
|
||||
make
|
||||
```
|
||||
|
||||
Build for a specific platform:
|
||||
|
||||
```
|
||||
make osx
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```
|
||||
make windows
|
||||
```
|
||||
|
||||
The resulting installers will be in the `dist` directory.
|
||||
|
||||
## Frequently Asked Questions
|
||||
|
||||
**Do I have to install VirtualBox?**
|
||||
|
|
|
|||
Loading…
Reference in New Issue