-
Notifications
You must be signed in to change notification settings - Fork 20
Linux Developer Guide
David Upton edited this page Aug 7, 2018
·
3 revisions
- Install Docker
apt-get update
apt-get install docker
- Install Docker-compose (make executable) (https://docs.docker.com/compose/install/#prerequisites)
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
- Install Docker-machine https://docs.docker.com/machine/install-machine/#install-machine-directly
base=https://github.com/docker/machine/releases/download/v0.14.0 &&
curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine &&
sudo install /tmp/docker-machine /usr/local/bin/docker-machine
- Install Lando
apt-get update
apt-get install lando
- Install git
apt-get update
apt-get install git
- Generate and register ssh keys (https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/)
This project is in the worldwide public domain. As stated in LICENSE:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.
DoIT homepage |
---|