docker_practice/install/experimental.md
Kang HuaiShuai 83619ad6e3
[Public] coding.net domain is *.mirror.docker-practice.com
Signed-off-by: Kang HuaiShuai <khs1994@khs1994.com>
2019-11-29 23:36:58 +08:00

42 lines
716 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 开启实验特性
一些 docker 命令或功能仅当 **实验特性** 开启时才能使用请按照以下方法进行设置
## 开启 Docker CLI 的实验特性
编辑 `~/.docker/config.json` 文件新增如下条目
```json
{
"experimental": "enabled"
}
```
或者通过设置环境变量的方式
**Linux/macOS**
```bash
$ export DOCKER_CLI_EXPERIMENTAL=enabled
```
**Windows**
```powershell
# 临时生效
$ set $env:DOCKER_CLI_EXPERIMENTAL="enabled"
# 永久生效
$ [environment]::SetEnvironmentvariable("DOCKER_CLI_EXPERIMENTAL","enabled","User")
```
## 开启 Dockerd 的实验特性
编辑 `/etc/docker/daemon.json`新增如下条目
```json
{
"experimental": true
}
```