linux docker启动参数,CentOS7修改Docker默认启动参数(/etc/default/docker文件不存在)…

  • Post author:
  • Post category:linux


刚Yum装完发现是没有网上所说的/etc/default/docker文件的,自己vim后其实也是不生效的。

因为Docker的systemd启动脚本(/usr/lib/systemd/system/docker.service),默认是没有加载到环境变量中的。

#查看配置文件

cat /usr/lib/systemd/system/docker.service

#以下是修改后的文件内容,加了2行

[Unit]

Description=Docker Application Container Engine

Documentation=http://docs.docker.com

After=network.target

Wants=docker-storage-setup.service

Requires=docker-cleanup.timer

[Service]

Type=notify

NotifyAccess=all

KillMode=process

EnvironmentFile=-/etc/default/docker #添加配置文件(-代表ignore error)

#基本配置

EnvironmentFile=-/etc/sysconfig/docker

#存储

EnvironmentFile=-/etc/sysconfig/docker-storage

#网络

EnvironmentFile=-/etc/sysconfig/docker-network

Environment=GOTRACEBACK=crash

Environ