1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

'docker pull' and 'docker put' automatically detect tar compression (gzip, bzip2 or uncompressed). -j and -z flags are no longer required.

This commit is contained in:
Solomon Hykes 2013-02-22 12:28:25 -08:00
parent dd96b6fccb
commit f437f5b8b4
10 changed files with 190 additions and 90 deletions

View file

@ -157,12 +157,12 @@ Step by step host setup
3. Type the following commands:
apt-get update
apt-get install lxc wget
apt-get install lxc wget bsdtar
4. Download the latest version of the [docker binaries](https://dl.dropbox.com/u/20637798/docker.tar.gz) (`wget https://dl.dropbox.com/u/20637798/docker.tar.gz`) (warning: this may not be the most up-to-date build)
5. Extract the contents of the tar file `tar -xf docker.tar.gz`
6. Launch the docker daemon `./dockerd`
7. Download a base image by running 'docker pull -j base'
7. Download a base image by running 'docker pull base'
Client installation