github.com/adxhyt/docker@v1.4.2-0.20150117221845-467b7c821390/CHANGELOG.md (about)

     1  # Changelog
     2  
     3  ## 1.4.1 (2014-12-15)
     4  
     5  #### Runtime
     6  - Fix issue with volumes-from and bind mounts not being honored after create
     7  
     8  ## 1.4.0 (2014-12-11)
     9  
    10  #### Notable Features since 1.3.0
    11  + Set key=value labels to the daemon (displayed in `docker info`), applied with
    12    new `-label` daemon flag
    13  + Add support for `ENV` in Dockerfile of the form: 
    14    `ENV name=value name2=value2...`
    15  + New Overlayfs Storage Driver
    16  + `docker info` now returns an `ID` and `Name` field
    17  + Filter events by event name, container, or image
    18  + `docker cp` now supports copying from container volumes
    19  - Fixed `docker tag`, so it honors `--force` when overriding a tag for existing
    20    image.
    21  
    22  ## 1.3.3 (2014-12-11)
    23  
    24  #### Security
    25  - Fix path traversal vulnerability in processing of absolute symbolic links (CVE-2014-9356)
    26  - Fix decompression of xz image archives, preventing privilege escalation (CVE-2014-9357)
    27  - Validate image IDs (CVE-2014-9358)
    28  
    29  #### Runtime
    30  - Fix an issue when image archives are being read slowly
    31  
    32  #### Client
    33  - Fix a regression related to stdin redirection
    34  - Fix a regression with `docker cp` when destination is the current directory
    35  
    36  ## 1.3.2 (2014-11-20)
    37  
    38  #### Security
    39  - Fix tar breakout vulnerability
    40  * Extractions are now sandboxed chroot
    41  - Security options are no longer committed to images
    42  
    43  #### Runtime
    44  - Fix deadlock in `docker ps -f exited=1`
    45  - Fix a bug when `--volumes-from` references a container that failed to start
    46  
    47  #### Registry
    48  + `--insecure-registry` now accepts CIDR notation such as 10.1.0.0/16
    49  * Private registries whose IPs fall in the 127.0.0.0/8 range do no need the `--insecure-registry` flag
    50  - Skip the experimental registry v2 API when mirroring is enabled
    51  
    52  ## 1.3.1 (2014-10-28)
    53  
    54  #### Security
    55  * Prevent fallback to SSL protocols < TLS 1.0 for client, daemon and registry
    56  + Secure HTTPS connection to registries with certificate verification and without HTTP fallback unless `--insecure-registry` is specified
    57  
    58  #### Runtime
    59  - Fix issue where volumes would not be shared
    60  
    61  #### Client
    62  - Fix issue with `--iptables=false` not automatically setting `--ip-masq=false`
    63  - Fix docker run output to non-TTY stdout
    64  
    65  #### Builder
    66  - Fix escaping `$` for environment variables
    67  - Fix issue with lowercase `onbuild` Dockerfile instruction
    68  - Restrict environment variable expansion to `ENV`, `ADD`, `COPY`, `WORKDIR`, `EXPOSE`, `VOLUME` and `USER`
    69  
    70  ## 1.3.0 (2014-10-14)
    71  
    72  #### Notable features since 1.2.0
    73  + Docker `exec` allows you to run additional processes inside existing containers
    74  + Docker `create` gives you the ability to create a container via the CLI without executing a process
    75  + `--security-opts` options to allow user to customize container labels and apparmor profiles
    76  + Docker `ps` filters
    77  - Wildcard support to COPY/ADD
    78  + Move production URLs to get.docker.com from get.docker.io
    79  + Allocate IP address on the bridge inside a valid CIDR
    80  + Use drone.io for PR and CI testing
    81  + Ability to setup an official registry mirror
    82  + Ability to save multiple images with docker `save`
    83  
    84  ## 1.2.0 (2014-08-20)
    85  
    86  #### Runtime
    87  + Make /etc/hosts /etc/resolv.conf and /etc/hostname editable at runtime
    88  + Auto-restart containers using policies
    89  + Use /var/lib/docker/tmp for large temporary files
    90  + `--cap-add` and `--cap-drop` to tweak what linux capability you want
    91  + `--device` to use devices in containers
    92  
    93  #### Client
    94  + `docker search` on private registries
    95  + Add `exited` filter to `docker ps --filter`
    96  * `docker rm -f` now kills instead of stop
    97  + Support for IPv6 addresses in `--dns` flag
    98  
    99  #### Proxy
   100  + Proxy instances in separate processes
   101  * Small bug fix on UDP proxy
   102  
   103  ## 1.1.2 (2014-07-23)
   104  
   105  #### Runtime
   106  + Fix port allocation for existing containers
   107  + Fix containers restart on daemon restart
   108  
   109  #### Packaging
   110  + Fix /etc/init.d/docker issue on Debian
   111  
   112  ## 1.1.1 (2014-07-09)
   113  
   114  #### Builder
   115  * Fix issue with ADD
   116  
   117  ## 1.1.0 (2014-07-03)
   118  
   119  #### Notable features since 1.0.1
   120  + Add `.dockerignore` support
   121  + Pause containers during `docker commit`
   122  + Add `--tail` to `docker logs`
   123  
   124  #### Builder
   125  + Allow a tar file as context for `docker build`
   126  * Fix issue with white-spaces and multi-lines in `Dockerfiles`
   127  
   128  #### Runtime
   129  * Overall performance improvements
   130  * Allow `/` as source of `docker run -v`
   131  * Fix port allocation
   132  * Fix bug in `docker save`
   133  * Add links information to `docker inspect`
   134  
   135  #### Client
   136  * Improve command line parsing for `docker commit`
   137  
   138  #### Remote API
   139  * Improve status code for the `start` and `stop` endpoints
   140  
   141  ## 1.0.1 (2014-06-19)
   142  
   143  #### Notable features since 1.0.0
   144  * Enhance security for the LXC driver
   145  
   146  #### Builder
   147  * Fix `ONBUILD` instruction passed to grandchildren
   148  
   149  #### Runtime
   150  * Fix events subscription
   151  * Fix /etc/hostname file with host networking
   152  * Allow `-h` and `--net=none`
   153  * Fix issue with hotplug devices in `--privileged`
   154  
   155  #### Client
   156  * Fix artifacts with events
   157  * Fix a panic with empty flags
   158  * Fix `docker cp` on Mac OS X
   159  
   160  #### Miscellaneous
   161  * Fix compilation on Mac OS X
   162  * Fix several races
   163  
   164  ## 1.0.0 (2014-06-09)
   165  
   166  #### Notable features since 0.12.0
   167  * Production support
   168  
   169  ## 0.12.0 (2014-06-05)
   170  
   171  #### Notable features since 0.11.0
   172  * 40+ various improvements to stability, performance and usability
   173  * New `COPY` Dockerfile instruction to allow copying a local file from the context into the container without ever extracting if the file is a tar file
   174  * Inherit file permissions from the host on `ADD`
   175  * New `pause` and `unpause` commands to allow pausing and unpausing of containers using cgroup freezer
   176  * The `images` command has a `-f`/`--filter` option to filter the list of images
   177  * Add `--force-rm` to clean up after a failed build
   178  * Standardize JSON keys in Remote API to CamelCase
   179  * Pull from a docker run now assumes `latest` tag if not specified
   180  * Enhance security on Linux capabilities and device nodes
   181  
   182  ## 0.11.1 (2014-05-07)
   183  
   184  #### Registry
   185  - Fix push and pull to private registry
   186  
   187  ## 0.11.0 (2014-05-07)
   188  
   189  #### Notable features since 0.10.0
   190  
   191  * SELinux support for mount and process labels
   192  * Linked containers can be accessed by hostname
   193  * Use the net `--net` flag to allow advanced network configuration such as host networking so that containers can use the host's network interfaces
   194  * Add a ping endpoint to the Remote API to do healthchecks of your docker daemon
   195  * Logs can now be returned with an optional timestamp
   196  * Docker now works with registries that support SHA-512
   197  * Multiple registry endpoints are supported to allow registry mirrors
   198  
   199  ## 0.10.0 (2014-04-08)
   200  
   201  #### Builder
   202  - Fix printing multiple messages on a single line. Fixes broken output during builds.
   203  - Follow symlinks inside container's root for ADD build instructions.
   204  - Fix EXPOSE caching.
   205  
   206  #### Documentation
   207  - Add the new options of `docker ps` to the documentation.
   208  - Add the options of `docker restart` to the documentation.
   209  - Update daemon docs and help messages for --iptables and --ip-forward.
   210  - Updated apt-cacher-ng docs example.
   211  - Remove duplicate description of --mtu from docs.
   212  - Add missing -t and -v for `docker images` to the docs.
   213  - Add fixes to the cli docs.
   214  - Update libcontainer docs.
   215  - Update images in docs to remove references to AUFS and LXC.
   216  - Update the nodejs_web_app in the docs to use the new epel RPM address.
   217  - Fix external link on security of containers.
   218  - Update remote API docs.
   219  - Add image size to history docs.
   220  - Be explicit about binding to all interfaces in redis example.
   221  - Document DisableNetwork flag in the 1.10 remote api.
   222  - Document that `--lxc-conf` is lxc only.
   223  - Add chef usage documentation.
   224  - Add example for an image with multiple for `docker load`.
   225  - Explain what `docker run -a` does in the docs.
   226  
   227  #### Contrib
   228  - Add variable for DOCKER_LOGFILE to sysvinit and use append instead of overwrite in opening the logfile.
   229  - Fix init script cgroup mounting workarounds to be more similar to cgroupfs-mount and thus work properly.
   230  - Remove inotifywait hack from the upstart host-integration example because it's not necessary any more.
   231  - Add check-config script to contrib.
   232  - Fix fish shell completion.
   233  
   234  #### Hack
   235  * Clean up "go test" output from "make test" to be much more readable/scannable.
   236  * Excluse more "definitely not unit tested Go source code" directories from hack/make/test.
   237  + Generate md5 and sha256 hashes when building, and upload them via hack/release.sh.
   238  - Include contributed completions in Ubuntu PPA.
   239  + Add cli integration tests.
   240  * Add tweaks to the hack scripts to make them simpler.
   241  
   242  #### Remote API
   243  + Add TLS auth support for API.
   244  * Move git clone from daemon to client.
   245  - Fix content-type detection in docker cp.
   246  * Split API into 2 go packages.
   247  
   248  #### Runtime
   249  * Support hairpin NAT without going through Docker server.
   250  - devicemapper: succeed immediately when removing non-existing devices.
   251  - devicemapper: improve handling of devicemapper devices (add per device lock, increase sleep time and unlock while sleeping).
   252  - devicemapper: increase timeout in waitClose to 10 seconds.
   253  - devicemapper: ensure we shut down thin pool cleanly.
   254  - devicemapper: pass info, rather than hash to activateDeviceIfNeeded, deactivateDevice, setInitialized, deleteDevice.
   255  - devicemapper: avoid AB-BA deadlock.
   256  - devicemapper: make shutdown better/faster.
   257  - improve alpha sorting in mflag.
   258  - Remove manual http cookie management because the cookiejar is being used.
   259  - Use BSD raw mode on Darwin. Fixes nano, tmux and others.
   260  - Add FreeBSD support for the client.
   261  - Merge auth package into registry.
   262  - Add deprecation warning for -t on `docker pull`.
   263  - Remove goroutine leak on error.
   264  - Update parseLxcInfo to comply with new lxc1.0 format.
   265  - Fix attach exit on darwin.
   266  - Improve deprecation message.
   267  - Retry to retrieve the layer metadata up to 5 times for `docker pull`.
   268  - Only unshare the mount namespace for execin.
   269  - Merge existing config when committing.
   270  - Disable daemon startup timeout.
   271  - Fix issue #4681: add loopback interface when networking is disabled.
   272  - Add failing test case for issue #4681.
   273  - Send SIGTERM to child, instead of SIGKILL.
   274  - Show the driver and the kernel version in `docker info` even when not in debug mode.
   275  - Always symlink /dev/ptmx for libcontainer. This fixes console related problems.
   276  - Fix issue caused by the absence of /etc/apparmor.d.
   277  - Don't leave empty cidFile behind when failing to create the container.
   278  - Mount cgroups automatically if they're not mounted already.
   279  - Use mock for search tests.
   280  - Update to double-dash everywhere.
   281  - Move .dockerenv parsing to lxc driver.
   282  - Move all bind-mounts in the container inside the namespace.
   283  - Don't use separate bind mount for container.
   284  - Always symlink /dev/ptmx for libcontainer.
   285  - Don't kill by pid for other drivers.
   286  - Add initial logging to libcontainer.
   287  * Sort by port in `docker ps`.
   288  - Move networking drivers into runtime top level package.
   289  + Add --no-prune to `docker rmi`.
   290  + Add time since exit in `docker ps`.
   291  - graphdriver: add build tags.
   292  - Prevent allocation of previously allocated ports & prevent improve port allocation.
   293  * Add support for --since/--before in `docker ps`.
   294  - Clean up container stop.
   295  + Add support for configurable dns search domains.
   296  - Add support for relative WORKDIR instructions.
   297  - Add --output flag for docker save.
   298  - Remove duplication of DNS entries in config merging.
   299  - Add cpuset.cpus to cgroups and native driver options.
   300  - Remove docker-ci.
   301  - Promote btrfs. btrfs is no longer considered experimental.
   302  - Add --input flag to `docker load`.
   303  - Return error when existing bridge doesn't match IP address.
   304  - Strip comments before parsing line continuations to avoid interpreting instructions as comments.
   305  - Fix TestOnlyLoopbackExistsWhenUsingDisableNetworkOption to ignore "DOWN" interfaces.
   306  - Add systemd implementation of cgroups and make containers show up as systemd units.
   307  - Fix commit and import when no repository is specified.
   308  - Remount /var/lib/docker as --private to fix scaling issue.
   309  - Use the environment's proxy when pinging the remote registry.
   310  - Reduce error level from harmless errors.
   311  * Allow --volumes-from to be individual files.
   312  - Fix expanding buffer in StdCopy.
   313  - Set error regardless of attach or stdin. This fixes #3364.
   314  - Add support for --env-file to load environment variables from files.
   315  - Symlink /etc/mtab and /proc/mounts.
   316  - Allow pushing a single tag.
   317  - Shut down containers cleanly at shutdown and wait forever for the containers to shut down. This makes container shutdown on daemon shutdown work properly via SIGTERM.
   318  - Don't throw error when starting an already running container.
   319  - Fix dynamic port allocation limit.
   320  - remove setupDev from libcontainer.
   321  - Add API version to `docker version`.
   322  - Return correct exit code when receiving signal and make SIGQUIT quit without cleanup.
   323  - Fix --volumes-from mount failure.
   324  - Allow non-privileged containers to create device nodes.
   325  - Skip login tests because of external dependency on a hosted service.
   326  - Deprecate `docker images --tree` and `docker images --viz`.
   327  - Deprecate `docker insert`.
   328  - Include base abstraction for apparmor. This fixes some apparmor related problems on Ubuntu 14.04.
   329  - Add specific error message when hitting 401 over HTTP on push.
   330  - Fix absolute volume check.
   331  - Remove volumes-from from the config.
   332  - Move DNS options to hostconfig.
   333  - Update the apparmor profile for libcontainer.
   334  - Add deprecation notice for `docker commit -run`.
   335  
   336  ## 0.9.1 (2014-03-24)
   337  
   338  #### Builder
   339  - Fix printing multiple messages on a single line. Fixes broken output during builds.
   340  
   341  #### Documentation
   342  - Fix external link on security of containers.
   343  
   344  #### Contrib
   345  - Fix init script cgroup mounting workarounds to be more similar to cgroupfs-mount and thus work properly.
   346  - Add variable for DOCKER_LOGFILE to sysvinit and use append instead of overwrite in opening the logfile.
   347  
   348  #### Hack
   349  - Generate md5 and sha256 hashes when building, and upload them via hack/release.sh.
   350  
   351  #### Remote API
   352  - Fix content-type detection in `docker cp`.
   353  
   354  #### Runtime
   355  - Use BSD raw mode on Darwin. Fixes nano, tmux and others.
   356  - Only unshare the mount namespace for execin.
   357  - Retry to retrieve the layer metadata up to 5 times for `docker pull`.
   358  - Merge existing config when committing.
   359  - Fix panic in monitor.
   360  - Disable daemon startup timeout.
   361  - Fix issue #4681: add loopback interface when networking is disabled.
   362  - Add failing test case for issue #4681.
   363  - Send SIGTERM to child, instead of SIGKILL.
   364  - Show the driver and the kernel version in `docker info` even when not in debug mode.
   365  - Always symlink /dev/ptmx for libcontainer. This fixes console related problems.
   366  - Fix issue caused by the absence of /etc/apparmor.d.
   367  - Don't leave empty cidFile behind when failing to create the container.
   368  - Improve deprecation message.
   369  - Fix attach exit on darwin.
   370  - devicemapper: improve handling of devicemapper devices (add per device lock, increase sleep time, unlock while sleeping).
   371  - devicemapper: succeed immediately when removing non-existing devices.
   372  - devicemapper: increase timeout in waitClose to 10 seconds.
   373  - Remove goroutine leak on error.
   374  - Update parseLxcInfo to comply with new lxc1.0 format.
   375  
   376  ## 0.9.0 (2014-03-10)
   377  
   378  #### Builder
   379  - Avoid extra mount/unmount during build. This fixes mount/unmount related errors during build.
   380  - Add error to docker build --rm. This adds missing error handling.
   381  - Forbid chained onbuild, `onbuild from` and  `onbuild maintainer` triggers.
   382  - Make `--rm` the default for `docker build`.
   383  
   384  #### Documentation
   385  - Download the docker client binary for Mac over https.
   386  - Update the titles of the install instructions & descriptions.
   387  * Add instructions for upgrading boot2docker.
   388  * Add port forwarding example in OS X install docs.
   389  - Attempt to disentangle repository and registry.
   390  - Update docs to explain more about `docker ps`.
   391  - Update sshd example to use a Dockerfile.
   392  - Rework some examples, including the Python examples.
   393  - Update docs to include instructions for a container's lifecycle.
   394  - Update docs documentation to discuss the docs branch.
   395  - Don't skip cert check for an example & use HTTPS.
   396  - Bring back the memory and swap accounting section which was lost when the kernel page was removed.
   397  - Explain DNS warnings and how to fix them on systems running and using a local nameserver.
   398  
   399  #### Contrib
   400  - Add Tanglu support for mkimage-debootstrap.
   401  - Add SteamOS support for mkimage-debootstrap.
   402  
   403  #### Hack
   404  - Get package coverage when running integration tests.
   405  - Remove the Vagrantfile. This is being replaced with boot2docker.
   406  - Fix tests on systems where aufs isn't available.
   407  - Update packaging instructions and remove the dependency on lxc.
   408  
   409  #### Remote API
   410  * Move code specific to the API to the api package.
   411  - Fix header content type for the API. Makes all endpoints use proper content type.
   412  - Fix registry auth & remove ping calls from CmdPush and CmdPull.
   413  - Add newlines to the JSON stream functions.
   414  
   415  #### Runtime
   416  * Do not ping the registry from the CLI. All requests to registries flow through the daemon.
   417  - Check for nil information return in the lxc driver. This fixes panics with older lxc versions.
   418  - Devicemapper: cleanups and fix for unmount. Fixes two problems which were causing unmount to fail intermittently.
   419  - Devicemapper: remove directory when removing device. Directories don't get left behind when removing the device.
   420  * Devicemapper: enable skip_block_zeroing. Improves performance by not zeroing blocks.
   421  - Devicemapper: fix shutdown warnings. Fixes shutdown warnings concerning pool device removal.
   422  - Ensure docker cp stream is closed properly. Fixes problems with files not being copied by `docker cp`.
   423  - Stop making `tcp://` default to `127.0.0.1:4243` and remove the default port for tcp.
   424  - Fix `--run` in `docker commit`. This makes `docker commit --run` work again.
   425  - Fix custom bridge related options. This makes custom bridges work again.
   426  + Mount-bind the PTY as container console. This allows tmux/screen to run.
   427  + Add the pure Go libcontainer library to make it possible to run containers using only features of the Linux kernel.
   428  + Add native exec driver which uses libcontainer and make it the default exec driver.
   429  - Add support for handling extended attributes in archives.
   430  * Set the container MTU to be the same as the host MTU.
   431  + Add simple sha256 checksums for layers to speed up `docker push`.
   432  * Improve kernel version parsing.
   433  * Allow flag grouping (`docker run -it`).
   434  - Remove chroot exec driver.
   435  - Fix divide by zero to fix panic.
   436  - Rewrite `docker rmi`.
   437  - Fix docker info with lxc 1.0.0.
   438  - Fix fedora tty with apparmor.
   439  * Don't always append env vars, replace defaults with vars from config.
   440  * Fix a goroutine leak.
   441  * Switch to Go 1.2.1.
   442  - Fix unique constraint error checks.
   443  * Handle symlinks for Docker's data directory and for TMPDIR.
   444  - Add deprecation warnings for flags (-flag is deprecated in favor of --flag)
   445  - Add apparmor profile for the native execution driver.
   446  * Move system specific code from archive to pkg/system.
   447  - Fix duplicate signal for `docker run -i -t` (issue #3336).
   448  - Return correct process pid for lxc.
   449  - Add a -G option to specify the group which unix sockets belong to.
   450  + Add `-f` flag to `docker rm` to force removal of running containers.
   451  + Kill ghost containers and restart all ghost containers when the docker daemon restarts.
   452  + Add `DOCKER_RAMDISK` environment variable to make Docker work when the root is on a ramdisk.
   453  
   454  ## 0.8.1 (2014-02-18)
   455  
   456  #### Builder
   457  
   458  - Avoid extra mount/unmount during build. This removes an unneeded mount/unmount operation which was causing problems with devicemapper
   459  - Fix regression with ADD of tar files. This stops Docker from decompressing tarballs added via ADD from the local file system
   460  - Add error to `docker build --rm`. This adds a missing error check to ensure failures to remove containers are detected and reported
   461  
   462  #### Documentation
   463  
   464  * Update issue filing instructions
   465  * Warn against the use of symlinks for Docker's storage folder
   466  * Replace the Firefox example with an IceWeasel example
   467  * Rewrite the PostgresSQL example using a Dockerfile and add more details to it
   468  * Improve the OS X documentation
   469  
   470  #### Remote API
   471  
   472  - Fix broken images API for version less than 1.7
   473  - Use the right encoding for all API endpoints which return JSON
   474  - Move remote api client to api/
   475  - Queue calls to the API using generic socket wait 
   476  
   477  #### Runtime
   478  
   479  - Fix the use of custom settings for bridges and custom bridges
   480  - Refactor the devicemapper code to avoid many mount/unmount race conditions and failures
   481  - Remove two panics which could make Docker crash in some situations
   482  - Don't ping registry from the CLI client
   483  - Enable skip_block_zeroing for devicemapper. This stops devicemapper from always zeroing entire blocks
   484  - Fix --run in `docker commit`. This makes docker commit store `--run` in the image configuration
   485  - Remove directory when removing devicemapper device. This cleans up leftover mount directories
   486  - Drop NET_ADMIN capability for non-privileged containers. Unprivileged containers can't change their network configuration
   487  - Ensure `docker cp` stream is closed properly
   488  - Avoid extra mount/unmount during container registration. This removes an unneeded mount/unmount operation which was causing problems with devicemapper
   489  - Stop allowing tcp:// as a default tcp bin address which binds to 127.0.0.1:4243 and remove the default port
   490  + Mount-bind the PTY as container console. This allows tmux and screen to run in a container
   491  - Clean up archive closing. This fixes and improves archive handling
   492  - Fix engine tests on systems where temp directories are symlinked
   493  - Add test methods for save and load
   494  - Avoid temporarily unmounting the container when restarting it. This fixes a race for devicemapper during restart
   495  - Support submodules when building from a GitHub repository
   496  - Quote volume path to allow spaces
   497  - Fix remote tar ADD behavior. This fixes a regression which was causing Docker to extract tarballs
   498  
   499  ## 0.8.0 (2014-02-04)
   500  
   501  #### Notable features since 0.7.0
   502  
   503  * Images and containers can be removed much faster
   504  * Building an image from source with docker build is now much faster
   505  * The Docker daemon starts and stops much faster
   506  * The memory footprint of many common operations has been reduced, by streaming files instead of buffering them in memory, fixing memory leaks, and fixing various suboptimal memory allocations
   507  * Several race conditions were fixed, making Docker more stable under very high concurrency load. This makes Docker more stable and less likely to crash and reduces the memory footprint of many common operations
   508  * All packaging operations are now built on the Go language’s standard tar implementation, which is bundled with Docker itself. This makes packaging more portable across host distributions, and solves several issues caused by quirks and incompatibilities between different distributions of tar
   509  * Docker can now create, remove and modify larger numbers of containers and images graciously thanks to more aggressive releasing of system resources. For example the storage driver API now allows Docker to do reference counting on mounts created by the drivers
   510  With the ongoing changes to the networking and execution subsystems of docker testing these areas have been a focus of the refactoring.  By moving these subsystems into separate packages we can test, analyze, and monitor coverage and quality of these packages
   511  * Many components have been separated into smaller sub-packages, each with a dedicated test suite. As a result the code is better-tested, more readable and easier to change
   512  
   513  * The ADD instruction now supports caching, which avoids unnecessarily re-uploading the same source content again and again when it hasn’t changed
   514  * The new ONBUILD instruction adds to your image a “trigger” instruction to be executed at a later time, when the image is used as the base for another build
   515  * Docker now ships with an experimental storage driver which uses the BTRFS filesystem for copy-on-write
   516  * Docker is officially supported on Mac OSX
   517  * The Docker daemon supports systemd socket activation
   518  
   519  ## 0.7.6 (2014-01-14)
   520  
   521  #### Builder
   522  
   523  * Do not follow symlink outside of build context
   524  
   525  #### Runtime
   526  
   527  - Remount bind mounts when ro is specified
   528  * Use https for fetching docker version
   529  
   530  #### Other
   531  
   532  * Inline the test.docker.io fingerprint
   533  * Add ca-certificates to packaging documentation
   534  
   535  ## 0.7.5 (2014-01-09)
   536  
   537  #### Builder
   538  
   539  * Disable compression for build. More space usage but a much faster upload
   540  - Fix ADD caching for certain paths
   541  - Do not compress archive from git build
   542  
   543  #### Documentation
   544  
   545  - Fix error in GROUP add example
   546  * Make sure the GPG fingerprint is inline in the documentation
   547  * Give more specific advice on setting up signing of commits for DCO
   548  
   549  #### Runtime
   550  
   551  - Fix misspelled container names
   552  - Do not add hostname when networking is disabled
   553  * Return most recent image from the cache by date
   554  - Return all errors from docker wait
   555  * Add Content-Type Header "application/json" to GET /version and /info responses 
   556  
   557  #### Other
   558  
   559  * Update DCO to version 1.1
   560  + Update Makefile to use "docker:GIT_BRANCH" as the generated image name
   561  * Update Travis to check for new 1.1 DCO version
   562  
   563  ## 0.7.4 (2014-01-07)
   564  
   565  #### Builder
   566  
   567  - Fix ADD caching issue with . prefixed path
   568  - Fix docker build on devicemapper by reverting sparse file tar option
   569  - Fix issue with file caching and prevent wrong cache hit
   570  * Use same error handling while unmarshalling  CMD and ENTRYPOINT
   571  
   572  #### Documentation
   573  
   574  * Simplify and streamline Amazon Quickstart
   575  * Install instructions use unprefixed fedora image
   576  * Update instructions for mtu flag for Docker on GCE
   577  + Add Ubuntu Saucy to installation
   578  - Fix for wrong version warning on master instead of latest
   579  
   580  #### Runtime
   581  
   582  - Only get the image's rootfs when we need to calculate the image size
   583  - Correctly handle unmapping UDP ports 
   584  * Make CopyFileWithTar use a pipe instead of a buffer to save memory on docker build
   585  - Fix login message to say pull instead of push
   586  - Fix "docker load" help by removing "SOURCE" prompt and mentioning STDIN
   587  * Make blank -H option default to the same as no -H was sent
   588  * Extract cgroups utilities to own submodule
   589  
   590  #### Other
   591  
   592  + Add Travis CI configuration to validate DCO and gofmt requirements
   593  + Add Developer Certificate of Origin Text
   594  * Upgrade VBox Guest Additions
   595  * Check standalone header when pinging a registry server
   596  
   597  ## 0.7.3 (2014-01-02)
   598  
   599  #### Builder
   600  
   601  + Update ADD to use the image cache, based on a hash of the added content
   602  * Add error message for empty Dockerfile
   603  
   604  #### Documentation
   605  
   606  - Fix outdated link to the "Introduction" on www.docker.io
   607  + Update the docs to get wider when the screen does
   608  - Add information about needing to install LXC when using raw binaries
   609  * Update Fedora documentation to disentangle the docker and docker.io conflict
   610  * Add a note about using the new `-mtu` flag in several GCE zones
   611  + Add FrugalWare installation instructions
   612  + Add a more complete example of `docker run`
   613  - Fix API documentation for creating and starting Privileged containers
   614  - Add missing "name" parameter documentation on "/containers/create"
   615  * Add a mention of `lxc-checkconfig` as a way to check for some of the necessary kernel configuration
   616  - Update the 1.8 API documentation with some additions that were added to the docs for 1.7
   617  
   618  #### Hack
   619  
   620  - Add missing libdevmapper dependency to the packagers documentation
   621  * Update minimum Go requirement to a hard line at Go 1.2+
   622  * Many minor improvements to the Vagrantfile
   623  + Add ability to customize dockerinit search locations when compiling (to be used very sparingly only by packagers of platforms who require a nonstandard location)
   624  + Add coverprofile generation reporting
   625  - Add `-a` to our Go build flags, removing the need for recompiling the stdlib manually
   626  * Update Dockerfile to be more canonical and have less spurious warnings during build
   627  - Fix some miscellaneous `docker pull` progress bar display issues
   628  * Migrate more miscellaneous packages under the "pkg" folder
   629  * Update TextMate highlighting to automatically be enabled for files named "Dockerfile"
   630  * Reorganize syntax highlighting files under a common "contrib/syntax" directory
   631  * Update install.sh script (https://get.docker.io/) to not fail if busybox fails to download or run at the end of the Ubuntu/Debian installation
   632  * Add support for container names in bash completion
   633  
   634  #### Packaging
   635  
   636  + Add an official Docker client binary for Darwin (Mac OS X)
   637  * Remove empty "Vendor" string and added "License" on deb package
   638  + Add a stubbed version of "/etc/default/docker" in the deb package
   639  
   640  #### Runtime
   641  
   642  * Update layer application to extract tars in place, avoiding file churn while handling whiteouts
   643  - Fix permissiveness of mtime comparisons in tar handling (since GNU tar and Go tar do not yet support sub-second mtime precision)
   644  * Reimplement `docker top` in pure Go to work more consistently, and even inside Docker-in-Docker (thus removing the shell injection vulnerability present in some versions of `lxc-ps`)
   645  + Update `-H unix://` to work similarly to `-H tcp://` by inserting the default values for missing portions
   646  - Fix more edge cases regarding dockerinit and deleted or replaced docker or dockerinit files
   647  * Update container name validation to include '.'
   648  - Fix use of a symlink or non-absolute path as the argument to `-g` to work as expected
   649  * Update to handle external mounts outside of LXC, fixing many small mounting quirks and making future execution backends and other features simpler
   650  * Update to use proper box-drawing characters everywhere in `docker images -tree`
   651  * Move MTU setting from LXC configuration to directly use netlink
   652  * Add `-S` option to external tar invocation for more efficient spare file handling
   653  + Add arch/os info to User-Agent string, especially for registry requests
   654  + Add `-mtu` option to Docker daemon for configuring MTU
   655  - Fix `docker build` to exit with a non-zero exit code on error
   656  + Add `DOCKER_HOST` environment variable to configure the client `-H` flag without specifying it manually for every invocation
   657  
   658  ## 0.7.2 (2013-12-16)
   659  
   660  #### Runtime
   661  
   662  + Validate container names on creation with standard regex
   663  * Increase maximum image depth to 127 from 42
   664  * Continue to move api endpoints to the job api
   665  + Add -bip flag to allow specification of dynamic bridge IP via CIDR
   666  - Allow bridge creation when ipv6 is not enabled on certain systems
   667  * Set hostname and IP address from within dockerinit
   668  * Drop capabilities from within dockerinit
   669  - Fix volumes on host when symlink is present the image
   670  - Prevent deletion of image if ANY container is depending on it even if the container is not running
   671  * Update docker push to use new progress display
   672  * Use os.Lstat to allow mounting unix sockets when inspecting volumes
   673  - Adjust handling of inactive user login
   674  - Add missing defines in devicemapper for older kernels
   675  - Allow untag operations with no container validation
   676  - Add auth config to docker build
   677  
   678  #### Documentation
   679  
   680  * Add more information about Docker logging
   681  + Add RHEL documentation
   682  * Add a direct example for changing the CMD that is run in a container
   683  * Update Arch installation documentation
   684  + Add section on Trusted Builds
   685  + Add Network documentation page
   686  
   687  #### Other
   688  
   689  + Add new cover bundle for providing code coverage reporting
   690  * Separate integration tests in bundles
   691  * Make Tianon the hack maintainer
   692  * Update mkimage-debootstrap with more tweaks for keeping images small
   693  * Use https to get the install script
   694  * Remove vendored dotcloud/tar now that Go 1.2 has been released
   695  
   696  ## 0.7.1 (2013-12-05)
   697  
   698  #### Documentation
   699  
   700  + Add @SvenDowideit as documentation maintainer
   701  + Add links example
   702  + Add documentation regarding ambassador pattern
   703  + Add Google Cloud Platform docs
   704  + Add dockerfile best practices
   705  * Update doc for RHEL
   706  * Update doc for registry
   707  * Update Postgres examples
   708  * Update doc for Ubuntu install
   709  * Improve remote api doc
   710  
   711  #### Runtime
   712  
   713  + Add hostconfig to docker inspect
   714  + Implement `docker log -f` to stream logs
   715  + Add env variable to disable kernel version warning
   716  + Add -format to `docker inspect`
   717  + Support bind-mount for files
   718  - Fix bridge creation on RHEL
   719  - Fix image size calculation
   720  - Make sure iptables are called even if the bridge already exists
   721  - Fix issue with stderr only attach
   722  - Remove init layer when destroying a container
   723  - Fix same port binding on different interfaces
   724  - `docker build` now returns the correct exit code
   725  - Fix `docker port` to display correct port
   726  - `docker build` now check that the dockerfile exists client side
   727  - `docker attach` now returns the correct exit code
   728  - Remove the name entry when the container does not exist
   729  
   730  #### Registry
   731  
   732  * Improve progress bars, add ETA for downloads
   733  * Simultaneous pulls now waits for the first to finish instead of failing
   734  - Tag only the top-layer image when pushing to registry
   735  - Fix issue with offline image transfer
   736  - Fix issue preventing using ':' in password for registry
   737  
   738  #### Other
   739  
   740  + Add pprof handler for debug
   741  + Create a Makefile
   742  * Use stdlib tar that now includes fix
   743  * Improve make.sh test script
   744  * Handle SIGQUIT on the daemon
   745  * Disable verbose during tests
   746  * Upgrade to go1.2 for official build
   747  * Improve unit tests
   748  * The test suite now runs all tests even if one fails
   749  * Refactor C in Go (Devmapper)
   750  - Fix OSX compilation
   751  
   752  ## 0.7.0 (2013-11-25)
   753  
   754  #### Notable features since 0.6.0
   755  
   756  * Storage drivers: choose from aufs, device-mapper, or vfs.
   757  * Standard Linux support: docker now runs on unmodified Linux kernels and all major distributions.
   758  * Links: compose complex software stacks by connecting containers to each other.
   759  * Container naming: organize your containers by giving them memorable names.
   760  * Advanced port redirects: specify port redirects per interface, or keep sensitive ports private.
   761  * Offline transfer: push and pull images to the filesystem without losing information.
   762  * Quality: numerous bugfixes and small usability improvements. Significant increase in test coverage.
   763  
   764  ## 0.6.7 (2013-11-21)
   765  
   766  #### Runtime
   767  
   768  * Improve stability, fixes some race conditons
   769  * Skip the volumes mounted when deleting the volumes of container.
   770  * Fix layer size computation: handle hard links correctly
   771  * Use the work Path for docker cp CONTAINER:PATH
   772  * Fix tmp dir never cleanup
   773  * Speedup docker ps
   774  * More informative error message on name collisions
   775  * Fix nameserver regex
   776  * Always return long id's
   777  * Fix container restart race condition
   778  * Keep published ports on docker stop;docker start
   779  * Fix container networking on Fedora
   780  * Correctly express "any address" to iptables
   781  * Fix network setup when reconnecting to ghost container
   782  * Prevent deletion if image is used by a running container
   783  * Lock around read operations in graph
   784  
   785  #### RemoteAPI
   786  
   787  * Return full ID on docker rmi
   788  
   789  #### Client
   790  
   791  + Add -tree option to images
   792  + Offline image transfer
   793  * Exit with status 2 on usage error and display usage on stderr
   794  * Do not forward SIGCHLD to container
   795  * Use string timestamp for docker events -since
   796  
   797  #### Other
   798  
   799  * Update to go 1.2rc5
   800  + Add /etc/default/docker support to upstart
   801  
   802  ## 0.6.6 (2013-11-06)
   803  
   804  #### Runtime
   805  
   806  * Ensure container name on register
   807  * Fix regression in /etc/hosts
   808  + Add lock around write operations in graph
   809  * Check if port is valid
   810  * Fix restart runtime error with ghost container networking
   811  + Add some more colors and animals to increase the pool of generated names
   812  * Fix issues in docker inspect
   813  + Escape apparmor confinement
   814  + Set environment variables using a file.
   815  * Prevent docker insert to erase something
   816  + Prevent DNS server conflicts in CreateBridgeIface
   817  + Validate bind mounts on the server side
   818  + Use parent image config in docker build
   819  * Fix regression in /etc/hosts
   820  
   821  #### Client
   822  
   823  + Add -P flag to publish all exposed ports
   824  + Add -notrunc and -q flags to docker history
   825  * Fix docker commit, tag and import usage
   826  + Add stars, trusted builds and library flags in docker search
   827  * Fix docker logs with tty
   828  
   829  #### RemoteAPI
   830  
   831  * Make /events API send headers immediately
   832  * Do not split last column docker top
   833  + Add size to history
   834  
   835  #### Other
   836  
   837  + Contrib: Desktop integration. Firefox usecase.
   838  + Dockerfile: bump to go1.2rc3
   839  
   840  ## 0.6.5 (2013-10-29)
   841  
   842  #### Runtime
   843  
   844  + Containers can now be named
   845  + Containers can now be linked together for service discovery
   846  + 'run -a', 'start -a' and 'attach' can forward signals to the container for better integration with process supervisors
   847  + Automatically start crashed containers after a reboot
   848  + Expose IP, port, and proto as separate environment vars for container links
   849  * Allow ports to be published to specific ips
   850  * Prohibit inter-container communication by default
   851  - Ignore ErrClosedPipe for stdin in Container.Attach
   852  - Remove unused field kernelVersion
   853  * Fix issue when mounting subdirectories of /mnt in container
   854  - Fix untag during removal of images
   855  * Check return value of syscall.Chdir when changing working directory inside dockerinit
   856  
   857  #### Client
   858  
   859  - Only pass stdin to hijack when needed to avoid closed pipe errors
   860  * Use less reflection in command-line method invocation
   861  - Monitor the tty size after starting the container, not prior
   862  - Remove useless os.Exit() calls after log.Fatal
   863  
   864  #### Hack
   865  
   866  + Add initial init scripts library and a safer Ubuntu packaging script that works for Debian
   867  * Add -p option to invoke debootstrap with http_proxy
   868  - Update install.sh with $sh_c to get sudo/su for modprobe
   869  * Update all the mkimage scripts to use --numeric-owner as a tar argument
   870  * Update hack/release.sh process to automatically invoke hack/make.sh and bail on build and test issues
   871  
   872  #### Other
   873  
   874  * Documentation: Fix the flags for nc in example
   875  * Testing: Remove warnings and prevent mount issues
   876  - Testing: Change logic for tty resize to avoid warning in tests
   877  - Builder: Fix race condition in docker build with verbose output
   878  - Registry: Fix content-type for PushImageJSONIndex method
   879  * Contrib: Improve helper tools to generate debian and Arch linux server images
   880  
   881  ## 0.6.4 (2013-10-16)
   882  
   883  #### Runtime
   884  
   885  - Add cleanup of container when Start() fails
   886  * Add better comments to utils/stdcopy.go
   887  * Add utils.Errorf for error logging
   888  + Add -rm to docker run for removing a container on exit
   889  - Remove error messages which are not actually errors
   890  - Fix `docker rm` with volumes
   891  - Fix some error cases where a HTTP body might not be closed
   892  - Fix panic with wrong dockercfg file
   893  - Fix the attach behavior with -i
   894  * Record termination time in state.
   895  - Use empty string so TempDir uses the OS's temp dir automatically
   896  - Make sure to close the network allocators
   897  + Autorestart containers by default
   898  * Bump vendor kr/pty to commit 3b1f6487b `(syscall.O_NOCTTY)`
   899  * lxc: Allow set_file_cap capability in container
   900  - Move run -rm to the cli only
   901  * Split stdout stderr
   902  * Always create a new session for the container
   903  
   904  #### Testing
   905  
   906  - Add aggregated docker-ci email report
   907  - Add cleanup to remove leftover containers
   908  * Add nightly release to docker-ci
   909  * Add more tests around auth.ResolveAuthConfig
   910  - Remove a few errors in tests
   911  - Catch errClosing error when TCP and UDP proxies are terminated
   912  * Only run certain tests with TESTFLAGS='-run TestName' make.sh
   913  * Prevent docker-ci to test closing PRs
   914  * Replace panic by log.Fatal in tests
   915  - Increase TestRunDetach timeout
   916  
   917  #### Documentation
   918  
   919  * Add initial draft of the Docker infrastructure doc
   920  * Add devenvironment link to CONTRIBUTING.md
   921  * Add `apt-get install curl` to Ubuntu docs
   922  * Add explanation for export restrictions
   923  * Add .dockercfg doc
   924  * Remove Gentoo install notes about #1422 workaround
   925  * Fix help text for -v option
   926  * Fix Ping endpoint documentation
   927  - Fix parameter names in docs for ADD command
   928  - Fix ironic typo in changelog
   929  * Various command fixes in postgres example
   930  * Document how to edit and release docs
   931  - Minor updates to `postgresql_service.rst`
   932  * Clarify LGTM process to contributors
   933  - Corrected error in the package name
   934  * Document what `vagrant up` is actually doing
   935  + improve doc search results
   936  * Cleanup whitespace in API 1.5 docs
   937  * use angle brackets in MAINTAINER example email
   938  * Update archlinux.rst
   939  + Changes to a new style for the docs. Includes version switcher.
   940  * Formatting, add information about multiline json
   941  * Improve registry and index REST API documentation
   942  - Replace deprecated upgrading reference to docker-latest.tgz, which hasn't been updated since 0.5.3
   943  * Update Gentoo installation documentation now that we're in the portage tree proper
   944  * Cleanup and reorganize docs and tooling for contributors and maintainers
   945  - Minor spelling correction of protocoll -> protocol
   946  
   947  #### Contrib
   948  
   949  * Add vim syntax highlighting for Dockerfiles from @honza
   950  * Add mkimage-arch.sh
   951  * Reorganize contributed completion scripts to add zsh completion
   952  
   953  #### Hack
   954  
   955  * Add vagrant user to the docker group
   956  * Add proper bash completion for "docker push"
   957  * Add xz utils as a runtime dep
   958  * Add cleanup/refactor portion of #2010 for hack and Dockerfile updates
   959  + Add contrib/mkimage-centos.sh back (from #1621), and associated documentation link
   960  * Add several of the small make.sh fixes from #1920, and make the output more consistent and contributor-friendly
   961  + Add @tianon to hack/MAINTAINERS
   962  * Improve network performance for VirtualBox
   963  * Revamp install.sh to be usable by more people, and to use official install methods whenever possible (apt repo, portage tree, etc.)
   964  - Fix contrib/mkimage-debian.sh apt caching prevention
   965  + Add Dockerfile.tmLanguage to contrib
   966  * Configured FPM to make /etc/init/docker.conf a config file
   967  * Enable SSH Agent forwarding in Vagrant VM
   968  * Several small tweaks/fixes for contrib/mkimage-debian.sh
   969  
   970  #### Other
   971  
   972  - Builder: Abort build if mergeConfig returns an error and fix duplicate error message
   973  - Packaging: Remove deprecated packaging directory
   974  - Registry: Use correct auth config when logging in.
   975  - Registry: Fix the error message so it is the same as the regex
   976  
   977  ## 0.6.3 (2013-09-23)
   978  
   979  #### Packaging
   980  
   981  * Add 'docker' group on install for ubuntu package
   982  * Update tar vendor dependency
   983  * Download apt key over HTTPS
   984  
   985  #### Runtime
   986  
   987  - Only copy and change permissions on non-bindmount volumes
   988  * Allow multiple volumes-from
   989  - Fix HTTP imports from STDIN
   990  
   991  #### Documentation
   992  
   993  * Update section on extracting the docker binary after build
   994  * Update development environment docs for new build process
   995  * Remove 'base' image from documentation
   996  
   997  #### Other
   998  
   999  - Client: Fix detach issue
  1000  - Registry: Update regular expression to match index
  1001  
  1002  ## 0.6.2 (2013-09-17)
  1003  
  1004  #### Runtime
  1005  
  1006  + Add domainname support
  1007  + Implement image filtering with path.Match
  1008  * Remove unnecessary warnings
  1009  * Remove os/user dependency
  1010  * Only mount the hostname file when the config exists
  1011  * Handle signals within the `docker login` command
  1012  - UID and GID are now also applied to volumes
  1013  - `docker start` set error code upon error
  1014  - `docker run` set the same error code as the process started
  1015  
  1016  #### Builder
  1017  
  1018  + Add -rm option in order to remove intermediate containers
  1019  * Allow multiline for the RUN instruction
  1020  
  1021  #### Registry
  1022  
  1023  * Implement login with private registry
  1024  - Fix push issues
  1025  
  1026  #### Other
  1027  
  1028  + Hack: Vendor all dependencies
  1029  * Remote API: Bump to v1.5
  1030  * Packaging: Break down hack/make.sh into small scripts, one per 'bundle': test, binary, ubuntu etc.
  1031  * Documentation: General improvements
  1032  
  1033  ## 0.6.1 (2013-08-23)
  1034  
  1035  #### Registry
  1036  
  1037  * Pass "meta" headers in API calls to the registry
  1038  
  1039  #### Packaging
  1040  
  1041  - Use correct upstart script with new build tool
  1042  - Use libffi-dev, don`t build it from sources
  1043  - Remove duplicate mercurial install command
  1044  
  1045  ## 0.6.0 (2013-08-22)
  1046  
  1047  #### Runtime
  1048  
  1049  + Add lxc-conf flag to allow custom lxc options
  1050  + Add an option to set the working directory
  1051  * Add Image name to LogEvent tests
  1052  + Add -privileged flag and relevant tests, docs, and examples
  1053  * Add websocket support to /container/<name>/attach/ws
  1054  * Add warning when net.ipv4.ip_forwarding = 0
  1055  * Add hostname to environment
  1056  * Add last stable version in `docker version`
  1057  - Fix race conditions in parallel pull
  1058  - Fix Graph ByParent() to generate list of child images per parent image.
  1059  - Fix typo: fmt.Sprint -> fmt.Sprintf
  1060  - Fix small \n error un docker build
  1061  * Fix to "Inject dockerinit at /.dockerinit"
  1062  * Fix #910. print user name to docker info output
  1063  * Use Go 1.1.2 for dockerbuilder
  1064  * Use ranged for loop on channels
  1065  - Use utils.ParseRepositoryTag instead of strings.Split(name, ":") in server.ImageDelete
  1066  - Improve CMD, ENTRYPOINT, and attach docs.
  1067  - Improve connect message with socket error
  1068  - Load authConfig only when needed and fix useless WARNING
  1069  - Show tag used when image is missing
  1070  * Apply volumes-from before creating volumes
  1071  - Make docker run handle SIGINT/SIGTERM
  1072  - Prevent crash when .dockercfg not readable
  1073  - Install script should be fetched over https, not http.
  1074  * API, issue 1471: Use groups for socket permissions
  1075  - Correctly detect IPv4 forwarding
  1076  * Mount /dev/shm as a tmpfs
  1077  - Switch from http to https for get.docker.io
  1078  * Let userland proxy handle container-bound traffic
  1079  * Update the Docker CLI to specify a value for the "Host" header.
  1080  - Change network range to avoid conflict with EC2 DNS
  1081  - Reduce connect and read timeout when pinging the registry
  1082  * Parallel pull
  1083  - Handle ip route showing mask-less IP addresses
  1084  * Allow ENTRYPOINT without CMD
  1085  - Always consider localhost as a domain name when parsing the FQN repos name
  1086  * Refactor checksum
  1087  
  1088  #### Documentation
  1089  
  1090  * Add MongoDB image example
  1091  * Add instructions for creating and using the docker group
  1092  * Add sudo to examples and installation to documentation
  1093  * Add ufw doc
  1094  * Add a reference to ps -a
  1095  * Add information about Docker`s high level tools over LXC.
  1096  * Fix typo in docs for docker run -dns
  1097  * Fix a typo in the ubuntu installation guide
  1098  * Fix to docs regarding adding docker groups
  1099  * Update default -H docs
  1100  * Update readme with dependencies for building
  1101  * Update amazon.rst to explain that Vagrant is not necessary for running Docker on ec2
  1102  * PostgreSQL service example in documentation
  1103  * Suggest installing linux-headers by default.
  1104  * Change the twitter handle
  1105  * Clarify Amazon EC2 installation
  1106  * 'Base' image is deprecated and should no longer be referenced in the docs.
  1107  * Move note about officially supported kernel
  1108  - Solved the logo being squished in Safari
  1109  
  1110  #### Builder
  1111  
  1112  + Add USER instruction do Dockerfile
  1113  + Add workdir support for the Buildfile
  1114  * Add no cache for docker build
  1115  - Fix docker build and docker events output
  1116  - Only count known instructions as build steps
  1117  - Make sure ENV instruction within build perform a commit each time
  1118  - Forbid certain paths within docker build ADD
  1119  - Repository name (and optionally a tag) in build usage
  1120  - Make sure ADD will create everything in 0755
  1121  
  1122  #### Remote API
  1123  
  1124  * Sort Images by most recent creation date.
  1125  * Reworking opaque requests in registry module
  1126  * Add image name in /events
  1127  * Use mime pkg to parse Content-Type
  1128  * 650 http utils and user agent field
  1129  
  1130  #### Hack
  1131  
  1132  + Bash Completion: Limit commands to containers of a relevant state
  1133  * Add docker dependencies coverage testing into docker-ci
  1134  
  1135  #### Packaging
  1136  
  1137  + Docker-brew 0.5.2 support and memory footprint reduction
  1138  * Add new docker dependencies into docker-ci
  1139  - Revert "docker.upstart: avoid spawning a `sh` process"
  1140  + Docker-brew and Docker standard library
  1141  + Release docker with docker
  1142  * Fix the upstart script generated by get.docker.io
  1143  * Enabled the docs to generate manpages.
  1144  * Revert Bind daemon to 0.0.0.0 in Vagrant.
  1145  
  1146  #### Register
  1147  
  1148  * Improve auth push
  1149  * Registry unit tests + mock registry
  1150  
  1151  #### Tests
  1152  
  1153  * Improve TestKillDifferentUser to prevent timeout on buildbot
  1154  - Fix typo in TestBindMounts (runContainer called without image)
  1155  * Improve TestGetContainersTop so it does not rely on sleep
  1156  * Relax the lo interface test to allow iface index != 1
  1157  * Add registry functional test to docker-ci
  1158  * Add some tests in server and utils
  1159  
  1160  #### Other
  1161  
  1162  * Contrib: bash completion script
  1163  * Client: Add docker cp command and copy api endpoint to copy container files/folders to the host
  1164  * Don`t read from stdout when only attached to stdin
  1165  
  1166  ## 0.5.3 (2013-08-13)
  1167  
  1168  #### Runtime
  1169  
  1170  * Use docker group for socket permissions
  1171  - Spawn shell within upstart script
  1172  - Handle ip route showing mask-less IP addresses
  1173  - Add hostname to environment
  1174  
  1175  #### Builder
  1176  
  1177  - Make sure ENV instruction within build perform a commit each time
  1178  
  1179  ## 0.5.2 (2013-08-08)
  1180  
  1181  * Builder: Forbid certain paths within docker build ADD
  1182  - Runtime: Change network range to avoid conflict with EC2 DNS
  1183  * API: Change daemon to listen on unix socket by default
  1184  
  1185  ## 0.5.1 (2013-07-30)
  1186  
  1187  #### Runtime
  1188  
  1189  + Add `ps` args to `docker top`
  1190  + Add support for container ID files (pidfile like)
  1191  + Add container=lxc in default env
  1192  + Support networkless containers with `docker run -n` and `docker -d -b=none`
  1193  * Stdout/stderr logs are now stored in the same file as JSON
  1194  * Allocate a /16 IP range by default, with fallback to /24. Try 12 ranges instead of 3.
  1195  * Change .dockercfg format to json and support multiple auth remote
  1196  - Do not override volumes from config
  1197  - Fix issue with EXPOSE override
  1198  
  1199  #### API
  1200  
  1201  + Docker client now sets useragent (RFC 2616)
  1202  + Add /events endpoint
  1203  
  1204  #### Builder
  1205  
  1206  + ADD command now understands URLs
  1207  + CmdAdd and CmdEnv now respect Dockerfile-set ENV variables
  1208  - Create directories with 755 instead of 700 within ADD instruction
  1209  
  1210  #### Hack
  1211  
  1212  * Simplify unit tests with helpers
  1213  * Improve docker.upstart event
  1214  * Add coverage testing into docker-ci
  1215  
  1216  ## 0.5.0 (2013-07-17)
  1217  
  1218  #### Runtime
  1219  
  1220  + List all processes running inside a container with 'docker top'
  1221  + Host directories can be mounted as volumes with 'docker run -v'
  1222  + Containers can expose public UDP ports (eg, '-p 123/udp')
  1223  + Optionally specify an exact public port (eg. '-p 80:4500')
  1224  * 'docker login' supports additional options
  1225  - Dont save a container`s hostname when committing an image.
  1226  
  1227  #### Registry
  1228  
  1229  + New image naming scheme inspired by Go packaging convention allows arbitrary combinations of registries
  1230  - Fix issues when uploading images to a private registry
  1231  
  1232  #### Builder
  1233  
  1234  + ENTRYPOINT instruction sets a default binary entry point to a container
  1235  + VOLUME instruction marks a part of the container as persistent data
  1236  * 'docker build' displays the full output of a build by default
  1237  
  1238  ## 0.4.8 (2013-07-01)
  1239  
  1240  + Builder: New build operation ENTRYPOINT adds an executable entry point to the container.  - Runtime: Fix a bug which caused 'docker run -d' to no longer print the container ID.
  1241  - Tests: Fix issues in the test suite
  1242  
  1243  ## 0.4.7 (2013-06-28)
  1244  
  1245  #### Remote API
  1246  
  1247  * The progress bar updates faster when downloading and uploading large files
  1248  - Fix a bug in the optional unix socket transport
  1249  
  1250  #### Runtime
  1251  
  1252  * Improve detection of kernel version
  1253  + Host directories can be mounted as volumes with 'docker run -b'
  1254  - fix an issue when only attaching to stdin
  1255  * Use 'tar --numeric-owner' to avoid uid mismatch across multiple hosts
  1256  
  1257  #### Hack
  1258  
  1259  * Improve test suite and dev environment
  1260  * Remove dependency on unit tests on 'os/user'
  1261  
  1262  #### Other
  1263  
  1264  * Registry: easier push/pull to a custom registry
  1265  + Documentation: add terminology section
  1266  
  1267  ## 0.4.6 (2013-06-22)
  1268  
  1269  - Runtime: fix a bug which caused creation of empty images (and volumes) to crash.
  1270  
  1271  ## 0.4.5 (2013-06-21)
  1272  
  1273  + Builder: 'docker build git://URL' fetches and builds a remote git repository
  1274  * Runtime: 'docker ps -s' optionally prints container size
  1275  * Tests: improved and simplified
  1276  - Runtime: fix a regression introduced in 0.4.3 which caused the logs command to fail.
  1277  - Builder: fix a regression when using ADD with single regular file.
  1278  
  1279  ## 0.4.4 (2013-06-19)
  1280  
  1281  - Builder: fix a regression introduced in 0.4.3 which caused builds to fail on new clients.
  1282  
  1283  ## 0.4.3 (2013-06-19)
  1284  
  1285  #### Builder
  1286  
  1287  + ADD of a local file will detect tar archives and unpack them
  1288  * ADD improvements: use tar for copy + automatically unpack local archives
  1289  * ADD uses tar/untar for copies instead of calling 'cp -ar'
  1290  * Fix the behavior of ADD to be (mostly) reverse-compatible, predictable and well-documented.
  1291  - Fix a bug which caused builds to fail if ADD was the first command
  1292  * Nicer output for 'docker build'
  1293  
  1294  #### Runtime
  1295  
  1296  * Remove bsdtar dependency
  1297  * Add unix socket and multiple -H support
  1298  * Prevent rm of running containers
  1299  * Use go1.1 cookiejar
  1300  - Fix issue detaching from running TTY container
  1301  - Forbid parallel push/pull for a single image/repo. Fixes #311
  1302  - Fix race condition within Run command when attaching.
  1303  
  1304  #### Client
  1305  
  1306  * HumanReadable ProgressBar sizes in pull
  1307  * Fix docker version`s git commit output
  1308  
  1309  #### API
  1310  
  1311  * Send all tags on History API call
  1312  * Add tag lookup to history command. Fixes #882
  1313  
  1314  #### Documentation
  1315  
  1316  - Fix missing command in irc bouncer example
  1317  
  1318  ## 0.4.2 (2013-06-17)
  1319  
  1320  - Packaging: Bumped version to work around an Ubuntu bug
  1321  
  1322  ## 0.4.1 (2013-06-17)
  1323  
  1324  #### Remote Api
  1325  
  1326  + Add flag to enable cross domain requests
  1327  + Add images and containers sizes in docker ps and docker images
  1328  
  1329  #### Runtime
  1330  
  1331  + Configure dns configuration host-wide with 'docker -d -dns'
  1332  + Detect faulty DNS configuration and replace it with a public default
  1333  + Allow docker run <name>:<id>
  1334  + You can now specify public port (ex: -p 80:4500)
  1335  * Improve image removal to garbage-collect unreferenced parents
  1336  
  1337  #### Client
  1338  
  1339  * Allow multiple params in inspect
  1340  * Print the container id before the hijack in `docker run`
  1341  
  1342  #### Registry
  1343  
  1344  * Add regexp check on repo`s name
  1345  * Move auth to the client
  1346  - Remove login check on pull
  1347  
  1348  #### Other
  1349  
  1350  * Vagrantfile: Add the rest api port to vagrantfile`s port_forward
  1351  * Upgrade to Go 1.1
  1352  - Builder: don`t ignore last line in Dockerfile when it doesn`t end with \n
  1353  
  1354  ## 0.4.0 (2013-06-03)
  1355  
  1356  #### Builder
  1357  
  1358  + Introducing Builder
  1359  + 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
  1360  
  1361  #### Remote API
  1362  
  1363  + Introducing Remote API
  1364  + control Docker programmatically using a simple HTTP/json API
  1365  
  1366  #### Runtime
  1367  
  1368  * Various reliability and usability improvements
  1369  
  1370  ## 0.3.4 (2013-05-30)
  1371  
  1372  #### Builder
  1373  
  1374  + 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
  1375  + 'docker build -t FOO' applies the tag FOO to the newly built container.
  1376  
  1377  #### Runtime
  1378  
  1379  + Interactive TTYs correctly handle window resize
  1380  * Fix how configuration is merged between layers
  1381  
  1382  #### Remote API
  1383  
  1384  + Split stdout and stderr on 'docker run'
  1385  + Optionally listen on a different IP and port (use at your own risk)
  1386  
  1387  #### Documentation
  1388  
  1389  * Improve install instructions.
  1390  
  1391  ## 0.3.3 (2013-05-23)
  1392  
  1393  - Registry: Fix push regression
  1394  - Various bugfixes
  1395  
  1396  ## 0.3.2 (2013-05-09)
  1397  
  1398  #### Registry
  1399  
  1400  * Improve the checksum process
  1401  * Use the size to have a good progress bar while pushing
  1402  * Use the actual archive if it exists in order to speed up the push
  1403  - Fix error 400 on push
  1404  
  1405  #### Runtime
  1406  
  1407  * Store the actual archive on commit
  1408  
  1409  ## 0.3.1 (2013-05-08)
  1410  
  1411  #### Builder
  1412  
  1413  + Implement the autorun capability within docker builder
  1414  + Add caching to docker builder
  1415  + Add support for docker builder with native API as top level command
  1416  + Implement ENV within docker builder
  1417  - Check the command existence prior create and add Unit tests for the case
  1418  * use any whitespaces instead of tabs
  1419  
  1420  #### Runtime
  1421  
  1422  + Add go version to debug infos
  1423  * Kernel version - don`t show the dash if flavor is empty
  1424  
  1425  #### Registry
  1426  
  1427  + Add docker search top level command in order to search a repository
  1428  - Fix pull for official images with specific tag
  1429  - Fix issue when login in with a different user and trying to push
  1430  * Improve checksum - async calculation
  1431  
  1432  #### Images
  1433  
  1434  + Output graph of images to dot (graphviz)
  1435  - Fix ByParent function
  1436  
  1437  #### Documentation
  1438  
  1439  + New introduction and high-level overview
  1440  + Add the documentation for docker builder
  1441  - CSS fix for docker documentation to make REST API docs look better.
  1442  - Fix CouchDB example page header mistake
  1443  - Fix README formatting
  1444  * Update www.docker.io website.
  1445  
  1446  #### Other
  1447  
  1448  + Website: new high-level overview
  1449  - Makefile: Swap "go get" for "go get -d", especially to compile on go1.1rc
  1450  * Packaging: packaging ubuntu; issue #510: Use goland-stable PPA package to build docker
  1451  
  1452  ## 0.3.0 (2013-05-06)
  1453  
  1454  #### Runtime
  1455  
  1456  - Fix the command existence check
  1457  - strings.Split may return an empty string on no match
  1458  - Fix an index out of range crash if cgroup memory is not
  1459  
  1460  #### Documentation
  1461  
  1462  * Various improvements
  1463  + New example: sharing data between 2 couchdb databases
  1464  
  1465  #### Other
  1466  
  1467  * Vagrant: Use only one deb line in /etc/apt
  1468  + Registry: Implement the new registry
  1469  
  1470  ## 0.2.2 (2013-05-03)
  1471  
  1472  + Support for data volumes ('docker run -v=PATH')
  1473  + Share data volumes between containers ('docker run -volumes-from')
  1474  + Improve documentation
  1475  * Upgrade to Go 1.0.3
  1476  * Various upgrades to the dev environment for contributors
  1477  
  1478  ## 0.2.1 (2013-05-01)
  1479  
  1480  + 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
  1481  * Improve install process on Vagrant
  1482  + New Dockerfile operation: "maintainer"
  1483  + New Dockerfile operation: "expose"
  1484  + New Dockerfile operation: "cmd"
  1485  + Contrib script to build a Debian base layer
  1486  + 'docker -d -r': restart crashed containers at daemon startup
  1487  * Runtime: improve test coverage
  1488  
  1489  ## 0.2.0 (2013-04-23)
  1490  
  1491  - Runtime: ghost containers can be killed and waited for
  1492  * Documentation: update install instructions
  1493  - Packaging: fix Vagrantfile
  1494  - Development: automate releasing binaries and ubuntu packages
  1495  + Add a changelog
  1496  - Various bugfixes
  1497  
  1498  ## 0.1.8 (2013-04-22)
  1499  
  1500  - Dynamically detect cgroup capabilities
  1501  - Issue stability warning on kernels <3.8
  1502  - 'docker push' buffers on disk instead of memory
  1503  - Fix 'docker diff' for removed files
  1504  - Fix 'docker stop' for ghost containers
  1505  - Fix handling of pidfile
  1506  - Various bugfixes and stability improvements
  1507  
  1508  ## 0.1.7 (2013-04-18)
  1509  
  1510  - Container ports are available on localhost
  1511  - 'docker ps' shows allocated TCP ports
  1512  - Contributors can run 'make hack' to start a continuous integration VM
  1513  - Streamline ubuntu packaging & uploading
  1514  - Various bugfixes and stability improvements
  1515  
  1516  ## 0.1.6 (2013-04-17)
  1517  
  1518  - Record the author an image with 'docker commit -author'
  1519  
  1520  ## 0.1.5 (2013-04-17)
  1521  
  1522  - Disable standalone mode
  1523  - Use a custom DNS resolver with 'docker -d -dns'
  1524  - Detect ghost containers
  1525  - Improve diagnosis of missing system capabilities
  1526  - Allow disabling memory limits at compile time
  1527  - Add debian packaging
  1528  - Documentation: installing on Arch Linux
  1529  - Documentation: running Redis on docker
  1530  - Fix lxc 0.9 compatibility
  1531  - Automatically load aufs module
  1532  - Various bugfixes and stability improvements
  1533  
  1534  ## 0.1.4 (2013-04-09)
  1535  
  1536  - Full support for TTY emulation
  1537  - Detach from a TTY session with the escape sequence `C-p C-q`
  1538  - Various bugfixes and stability improvements
  1539  - Minor UI improvements
  1540  - Automatically create our own bridge interface 'docker0'
  1541  
  1542  ## 0.1.3 (2013-04-04)
  1543  
  1544  - Choose TCP frontend port with '-p :PORT'
  1545  - Layer format is versioned
  1546  - Major reliability improvements to the process manager
  1547  - Various bugfixes and stability improvements
  1548  
  1549  ## 0.1.2 (2013-04-03)
  1550  
  1551  - Set container hostname with 'docker run -h'
  1552  - Selective attach at run with 'docker run -a [stdin[,stdout[,stderr]]]'
  1553  - Various bugfixes and stability improvements
  1554  - UI polish
  1555  - Progress bar on push/pull
  1556  - Use XZ compression by default
  1557  - Make IP allocator lazy
  1558  
  1559  ## 0.1.1 (2013-03-31)
  1560  
  1561  - Display shorthand IDs for convenience
  1562  - Stabilize process management
  1563  - Layers can include a commit message
  1564  - Simplified 'docker attach'
  1565  - Fix support for re-attaching
  1566  - Various bugfixes and stability improvements
  1567  - Auto-download at run
  1568  - Auto-login on push
  1569  - Beefed up documentation
  1570  
  1571  ## 0.1.0 (2013-03-23)
  1572  
  1573  Initial public release
  1574  
  1575  - Implement registry in order to push/pull images
  1576  - TCP port allocation
  1577  - Fix termcaps on Linux
  1578  - Add documentation
  1579  - Add Vagrant support with Vagrantfile
  1580  - Add unit tests
  1581  - Add repository/tags to ease image management
  1582  - Improve the layer implementation