Moby Project - a collaborative project for the container ecosystem to assemble container-based systems
Go to file
Joffrey F 81459a5afc Fixed README formatting 2013-01-31 19:01:18 -08:00
docker Fix a bug which caused the client to never exit in interactive mode when NORAW is set. 2013-01-29 15:37:54 -08:00
dockerd Fixed a bug with 'docker run' 2013-01-29 16:51:03 -08:00
fake Fixed docker.fake so that fake.StartCommand() can be used on Darwin for testing 2013-01-28 23:16:41 -08:00
future Experimenting with a UI which differentiates images and containers 2013-01-27 15:42:42 -08:00
image Fix bug introduced in c7a944caf2 which caused 'docker images' to crash 2013-01-29 12:15:39 -08:00
rcli Convenience logging in rcli 2013-01-27 15:43:08 -08:00
LICENCE.txt Temporary licence file until we open-source it 2013-01-28 23:34:17 -08:00
README.md Fixed README formatting 2013-01-31 19:01:18 -08:00
container.go Container: Improved pseudo-terminal support 2013-01-29 15:51:21 -08:00
container_test.go Created tests for stdin pipes and tty handling 2013-01-29 15:16:45 -08:00
docker.go go fmt 2013-01-29 13:50:27 -08:00
docker_test.go Fixed a bug preventing containers from running after being restored 2013-01-25 16:20:34 -08:00
filesystem.go Fixed bug which caused permission errors for non-root users on rw layer (Thanks @jpetazo!) 2013-01-29 03:14:16 -08:00
filesystem_test.go filesystem: Added IsMounted() unit tests 2013-01-28 11:51:41 -08:00
lxc_template.go Networking: Mount bind (ro) the host's /etc/resolv.conf into the 2013-01-28 17:32:15 -08:00
state.go 'docker ps' prints shorter lines 2013-01-29 03:18:07 -08:00
utils.go 'docker ps' prints shorter lines 2013-01-29 03:18:07 -08:00
utils_test.go Initial commit 2013-01-18 16:13:39 -08:00

README.md

Setup instructions

Supported hosts

Right now, the officially supported hosts are:

  • Ubuntu 12.10 (quantal)

Hosts that might work with slight kernel modifications, but are not officially supported:

  • Ubuntu 12.04 (precise)

Step by step host setup

  1. Set up your host of choice on a physical / virtual machine

  2. Assume root identity on your newly installed environment (sudo -s)

  3. Type the following commands:

     apt-get update
     apt-get install lxc wget
     debootstrap --arch=amd64 quantal /var/lib/docker/images/ubuntu/
    
  4. Download the latest version of the docker binaries (wget https://dl.dropbox.com/u/20637798/docker.tar.gz)

  5. Extract the contents of the tar file tar -xf docker.tar.gz

  6. Launch the docker daemon ./dockerd

Client installation

  1. Download the latest version of the docker binaries (wget https://dl.dropbox.com/u/20637798/docker.tar.gz)
  2. Extract the contents of the tar file tar -xf docker.tar.gz
  3. You can now use the docker client binary ./docker. Consider adding it to your PATH for simplicity.