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,
|
2024-04-26 14:16:51 -04:00
|
|
|
feel free to provide any feedback on these features you wish.
|
2015-05-18 09:17:07 -04:00
|
|
|
|
2016-11-08 05:31:09 -05:00
|
|
|
## Use Docker experimental
|
|
|
|
|
2017-02-14 19:07:50 -05:00
|
|
|
To enable experimental features, start the Docker daemon with the
|
|
|
|
`--experimental` flag or enable the daemon flag in the
|
|
|
|
`/etc/docker/daemon.json` configuration file:
|
2016-11-08 05:31:09 -05:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"experimental": true
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-02-14 19:07:50 -05:00
|
|
|
You can check to see if experimental features are enabled on a running daemon
|
|
|
|
using the following command:
|
2016-11-08 05:31:09 -05:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker version -f '{{.Server.Experimental}}'
|
|
|
|
true
|
|
|
|
```
|
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
|
|
|
|
2017-02-14 19:07:50 -05:00
|
|
|
Docker service logs command to view logs for a Docker service. This is needed in Swarm mode.
|
|
|
|
Option to squash image layers to the base image after successful builds.
|
|
|
|
Checkpoint and restore support for Containers.
|
|
|
|
Metrics (Prometheus) output for basic container, image, and daemon operations.
|
|
|
|
|
2016-12-27 21:44:44 -05:00
|
|
|
* [External graphdriver plugins](../docs/extend/plugins_graphdriver.md)
|
2021-09-07 07:30:48 -04:00
|
|
|
* [Checkpoint & Restore](../docs/reference/commandline/checkpoint.md)
|
2020-12-18 17:33:02 -05:00
|
|
|
* [Docker build with --squash argument](../docs/reference/commandline/build.md#squash-an-images-layers---squash-experimental)
|