我知道如何使用 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"
}]
}