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
- Host: GitHub
- URL: https://github.com/handcode/osx-docker-toolbox
- Owner: handcode
- Created: 2021-05-12T04:38:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-12T04:38:44.000Z (about 4 years ago)
- Last Synced: 2025-02-16T20:27:01.272Z (4 months ago)
- Language: Makefile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-machineThe 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
```