0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

コンテナを起動しても直ぐに終了してしまう件

Posted at

作ったコンテナをコミットして、新しくイメージを作った後起動しても、直ぐに終了してしまいます。

Extra argument bash.

このエラーが、でてコンテナを起動できないのです。

検索したら、この記事を見つけました。

Dockerfileの、この記述が、要因です。

EXPOSE 22
ENTRYPOINT [ "/usr/sbin/sshd","-D"]

コミットして新しく生まれたコンテナで、CMDの初期値に、

/usr/sbin/sshd

が記録されていることが、起動できない原因です。
私が見つけた質問の解決先として、


ENTRYPOINT [ "/usr/sbin/sshd"]
CMD ["-D"]

としていました。

でも、私は、ビルドできませんでした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?