使用coreos点火装置安装docker-compose

时间:2017-11-08 02:12:31

标签: docker-compose coreos coreos-ignition

我知道如何使用cloud-config进行安装。但由于这是第一次启动任务,我宁愿使用点火装置安装它。

这是我尝试的配置(不起作用):

"systemd": {
  "units": [{
    "name": "install-docker-compose.service",
    "contents": "[Unit]\nDescription=Install docker-compose\nConditionPathExists=!/opt/bin/docker-compose\n[Service]\nType=oneshot\nRemainAfterExit=yes\nExecStart=/usr/bin/mkdir -p /opt/bin/\nExecStart=/usr/bin/curl --create-dirs -o /opt/bin/docker-compose -sL \"https://github.com/docker/compose/releases/download/1.9.0/docker-compose-linux-x86_64\"\nExecStart=/usr/bin/chmod +x /opt/bin/docker-compose"
  }]
}

0 个答案:

没有答案