An open API service indexing awesome lists of open source software.

https://github.com/handcode/osx-docker-toolbox

Install minimal setup required to work with docker on OSX
https://github.com/handcode/osx-docker-toolbox

Last synced: 24 days ago
JSON representation

Install minimal setup required to work with docker on OSX

Awesome Lists containing this project

README

        

# osx-docker-toolbox

This repo provide the minimal setup required to work with docker when using a VM (eg. VirtualBox) as docker machine

It installs:
- docker cli
- docker-compose
- docker-machine

The versions and the destination path for the tools can be defined in the `.versions` file. see [.versions.dist](.versions.dist)

## usage:

#### config setup
```
cp .versions.dist .versions
# edit .versions if needed
```

#### Install docker tools

Depending on the destination path ($INSTALL_BASE_DIR) defined in `.version` config one will need root permissions to install.
If so, open root shell via `sudo bash` before running `make`

install all tools:
```
make all
```

install only one (or more) tools
```
make docker
make docker-compose
make docker-machine
```