4
2

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.

[FAQ] docker-compose up で「strconv.Atoi: parsing "": invalid syntax」が発生した場合の対処

Last updated at Posted at 2023-01-26

事象

docker-compose up コマンドでコンテナを起動しようとすると
「strconv.Atoi: parsing "": invalid syntax」
が発生し、コンテナが起動できない。

console
docker-compose up
...
...
...
...
strconv.Atoi: parsing "": invalid syntax

原因

意図していないdockerコンテナが実行されていたり、不要なファイルなどの残骸が残っている場合などに発生します。
たとえば、Ctr+Cでコンテナを停止したが正常終了できていない場合などに発生します。

解決方法

コンテナを正常終了し、コンテナおよびネットワークを削除する。

console
docker-compose down

上記のコマンドで問題が解決しない場合は
以下のコマンドで、Composeファイルで定義していないコンテナも削除する。

console
docker-compose down --remove-orphans
4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?