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?

Docker構築で出たエラー群

Posted at

Dockerを構築していて出会ったエラー達の備忘録です。

Makefile:6: *** missing separator. Stop.

Makeファイルを作っていたので、以下のようにmakeコマンドの内容の行にインデントをつけ忘れていました。

修正前

Makefile
up:
docker compose up -d

修正後

Makefike
up:
	docker compose up -d

services.xxx.environment.0 must be a string

environmentの中では「-」が必要ない場合もあるので試してみてください。

修正前

docker-compose.yaml
environment:
  - xxx: xxx

修正後

docker-compose.yaml
environment:
  xxx: xxx

services.xxx.build Additional property yyy is not allowed

xxx配下のyyyの記述部分を注意してもう一度確認してみてください。
タイポなどはありませんか?

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?