• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..22-Dec-2020-

images/H03-May-2022-55

README.mdH A D22-Dec-20202 KiB5137

checkpoint-restore.mdH A D22-Dec-20203.6 KiB8957

vlan-networks.mdH A D22-Dec-202026.8 KiB633506

README.md

1# Docker Experimental Features
2
3This page contains a list of features in the Docker engine which are
4experimental. Experimental features are **not** ready for production. They are
5provided for test and evaluation in your sandbox environments.
6
7The information below describes each feature and the GitHub pull requests and
8issues associated with it. If necessary, links are provided to additional
9documentation on an issue.  As an active Docker user and community member,
10please feel free to provide any feedback on these features you wish.
11
12## Use Docker experimental
13
14Experimental features are now included in the standard Docker binaries as of
15version 1.13.0.
16To enable experimental features, start the Docker daemon with the
17`--experimental` flag or enable the daemon flag in the
18`/etc/docker/daemon.json` configuration file:
19
20```json
21{
22    "experimental": true
23}
24```
25
26You can check to see if experimental features are enabled on a running daemon
27using the following command:
28
29```bash
30$ docker version -f '{{.Server.Experimental}}'
31true
32```
33
34## Current experimental features
35
36Docker service logs command to view logs for a Docker service. This is needed in Swarm mode.
37Option to squash image layers to the base image after successful builds.
38Checkpoint and restore support for Containers.
39Metrics (Prometheus) output for basic container, image, and daemon operations.
40
41 * [External graphdriver plugins](../docs/extend/plugins_graphdriver.md)
42 * [Ipvlan Network Drivers](vlan-networks.md)
43 * [Checkpoint & Restore](checkpoint-restore.md)
44 * [Docker build with --squash argument](../docs/reference/commandline/build.md#squash-an-images-layers---squash-experimental)
45
46## How to comment on an experimental feature
47
48Each 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.
49
50Issues or problems with a feature? Inquire for help on the `#docker` IRC channel or on the [Docker Google group](https://groups.google.com/forum/#!forum/docker-user).
51