From 172f746e4d80df0efd2b30ba6be540d7ec423db3 Mon Sep 17 00:00:00 2001
From: Thatcher Peskens Consider adding docker to your Want to hack on Docker? Awesome! We have some instructions to get you started. They are probably not perfect, please let us know if anything feels wrong or incomplete. Want to hack on Docker? Awesome! We have some instructions to get you started. They are probably not perfect, please let us know if anything feels wrong or incomplete.PATH for simplicity.Contributing to Docker
-
+
* *Heterogeneous payloads*: any combination of binaries, libraries, configuration files, scripts, virtualenvs, jars, gems, tarballs, you name it. No more juggling between domain-specific tools. Docker can deploy and run them all.
From da69df5f421ed49464254fb52dc222f98587345f Mon Sep 17 00:00:00 2001
From: Thatcher Peskens Install dependencies:
sudo apt-get install lxc wget bsdtar curl
- sudo apt-get install linux-image-extra-`uname -r`sudo apt-get install lxc wget bsdtar curl+
sudo apt-get install linux-image-extra-`uname -r`
The linux-image-extra package is needed on standard Ubuntu EC2 AMIs in order to install the aufs kernel module.
Install the latest docker binary:
wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
- tar -xf docker-master.tgz
+ wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
+ tar -xf docker-master.tgz
Run your first container!
cd docker-master
- sudo ./docker run -i -t base /bin/bash
+ sudo ./docker run -i -t base /bin/bash
Done!
Consider adding docker to your PATH for simplicity.