啟動時自動啟動 Docker 容器

啟動時自動啟動 Docker 容器

所以我有一個名為“webby”的 docker 容器,我試圖在重新啟動時啟動它。我的主機系統是: Linux docker01 3.13.0-52-generic #86-Ubuntu SMP Mon May 4 04:32:59 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

我將以下內容新增到 /etc/default/docker :

DOCKER_OPTS="-r=true"

我確保我的容器在重新啟動之前已啟動。但是重新啟動後容器並未啟動。

然後我嘗試在 /etc/init/scott.conf 建立一個初始化腳本

description "Docker startup script for webby"
author "me"
start on filesystem and started docker.io
stop on runlevel [!2345]
respawn
script
  /usr/bin/docker start -a webby
end script

但是,重新啟動後也不會啟動容器。有什麼想法我做錯了嗎?

答案1

我永遠無法使用 DOCKER_OPTS 去工作。但是如果我改變了

start on filesystem and started docker.io

start on filesystem and started docker

那裡有很多舊的 docker 文件。

相關內容