Files
docker-cli/components/engine
Solomon Hykes d5ca862c98 docker rmi: remove an image
Upstream-commit: de1c361a6eea95c867c43619fc1e7a7b8a147750
Component: engine
2013-02-01 00:08:45 -08:00
..
2013-02-01 00:08:45 -08:00
2013-02-01 00:08:45 -08:00
2013-01-27 15:43:08 -08:00
2013-01-29 13:50:27 -08:00
2013-01-31 19:01:18 -08:00
2013-01-29 03:18:07 -08:00
2013-01-18 16:13:39 -08:00
2013-01-29 03:18:07 -08:00

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.