2015-09-30 16:11:36 -04:00
# Docker Experimental Features
2015-05-18 09:17:07 -04:00
2015-06-11 15:48:01 -04:00
This page contains a list of features in the Docker engine which are
2015-06-03 16:43:27 -04:00
experimental. Experimental features are **not** ready for production. They are
2016-05-12 10:52:00 -04:00
provided for test and evaluation in your sandbox environments.
2015-05-18 09:17:07 -04:00
2015-06-13 12:21:50 -04:00
The information below describes each feature and the GitHub pull requests and
2015-05-22 12:18:19 -04:00
issues associated with it. If necessary, links are provided to additional
documentation on an issue. As an active Docker user and community member,
please feel free to provide any feedback on these features you wish.
2015-05-18 09:17:07 -04:00
2015-06-25 15:55:18 -04:00
## Install Docker experimental
2015-05-18 09:17:07 -04:00
2015-08-14 16:45:38 -04:00
Unlike the regular Docker binary, the experimental channels is built and
updated nightly on https://experimental.docker.com. From one day to the
next, new features may appear, while existing experimental features may be
refined or entirely removed.
2015-06-03 16:43:27 -04:00
2015-08-07 13:13:28 -04:00
1. Verify that you have `curl` installed.
2015-05-18 09:17:07 -04:00
2015-08-07 13:13:28 -04:00
$ which curl
2015-05-18 09:17:07 -04:00
2015-08-07 13:13:28 -04:00
If `curl` isn't installed, install it after updating your manager:
2015-05-18 09:17:07 -04:00
2015-05-22 12:18:19 -04:00
$ sudo apt-get update
2015-08-07 13:13:28 -04:00
$ sudo apt-get install curl
2015-05-18 09:17:07 -04:00
2015-05-22 12:18:19 -04:00
2. Get the latest Docker package.
2015-05-18 09:17:07 -04:00
2015-08-07 13:13:28 -04:00
$ curl -sSL https://experimental.docker.com/ | sh
2015-05-22 12:18:19 -04:00
The system prompts you for your `sudo` password. Then, it downloads and
installs Docker and its dependencies.
>**Note**: If your company is behind a filtering proxy, you may find that the
>`apt-key`
>command fails for the Docker repo during installation. To work around this,
>add the key directly using the following:
>
2015-08-07 13:13:28 -04:00
> $ curl -sSL https://experimental.docker.com/gpg | sudo apt-key add -
2015-05-22 12:18:19 -04:00
3. Verify `docker` is installed correctly.
$ sudo docker run hello-world
This command downloads a test image and runs it in a container.
2015-06-25 15:55:18 -04:00
### Get the Linux binary
To download the latest experimental `docker` binary for Linux,
use the following URLs:
2016-06-14 22:19:03 -04:00
https://experimental.docker.com/builds/Linux/i386/docker-latest.tgz
2015-06-25 15:55:18 -04:00
2016-06-14 22:19:03 -04:00
https://experimental.docker.com/builds/Linux/x86_64/docker-latest.tgz
2015-06-25 15:55:18 -04:00
After downloading the appropriate binary, you can follow the instructions
2016-10-05 05:13:08 -04:00
[here ](https://docs.docker.com/engine/installation/binaries/#/get-the-docker-engine-binaries ) to run the `docker` daemon.
2015-06-25 15:55:18 -04:00
> **Note**
>
> 1) You can get the MD5 and SHA256 hashes by appending .md5 and .sha256 to the URLs respectively
>
> 2) You can get the compressed binaries by appending .tgz to the URLs
2015-08-14 16:45:38 -04:00
### Build an experimental binary
You can also build the experimental binary from the standard development environment by adding
`DOCKER_EXPERIMENTAL=1` to the environment where you run `make` to build Docker binaries. For example,
2015-09-16 16:16:36 -04:00
to build a Docker binary with the experimental features enabled:
2015-08-14 16:45:38 -04:00
2015-09-16 16:16:36 -04:00
$ DOCKER_EXPERIMENTAL=1 make binary
2015-08-14 16:45:38 -04:00
2015-06-04 13:33:20 -04:00
## Current experimental features
2015-05-22 12:18:19 -04:00
2015-10-08 11:57:30 -04:00
* [External graphdriver plugins ](plugins_graphdriver.md )
2016-08-25 12:34:32 -04:00
* [Ipvlan Network Drivers ](vlan-networks.md )
2016-06-30 05:22:42 -04:00
* [Docker Stacks and Distributed Application Bundles ](docker-stacks-and-bundles.md )
2016-05-12 10:52:00 -04:00
* [Checkpoint & Restore ](checkpoint-restore.md )
2015-10-08 11:57:30 -04:00
2015-06-03 16:43:27 -04:00
## How to comment on an experimental feature
2016-05-12 10:52:00 -04:00
Each feature's documentation includes a list of proposal pull requests or PRs associated with the feature. If you want to comment on or suggest a change to a feature, please add it to the existing feature PR.
2015-06-03 16:43:27 -04:00
2016-05-12 10:52:00 -04:00
Issues or problems with a feature? Inquire for help on the `#docker` IRC channel or in on the [Docker Google group ](https://groups.google.com/forum/#!forum/docker-user ).