Kubernetes/Docker/Docs/Docker常用配置文件配置.md
offends 7a2f41e7d6
All checks were successful
continuous-integration/drone Build is passing
synchronization
2024-08-07 18:54:39 +08:00

835 B

本文作者:丁辉

Docker常用配置文件配置

更改IP池

  • 添加如下参数

    vi /etc/docker/daemon.json
    
    {
      "default-address-pools" : [
            {
               "base" : "192.168.0.0/16",
               "size" : 24
            }
        ]
    }
    

指定的 Cgroups 驱动程序

  • 添加如下参数

    vi /etc/docker/daemon.json
    
    {
      "exec-opts": ["native.cgroupdriver=systemd"]
    }
    
  • 验证

    docker info|grep "Cgroup Driver"
    

Docker启用实验性CLI功能

第一种

  • 客户端开启

    vi ~/.docker/config.json
    
    {
    	"experimental": "enabled"
    }
    

第二种

  • 服务端开启

    vi /etc/docker/daemon.json
    
    {
    	"experimental": true
    }