embedded daemon response max depth exceeded
This error is usually caused by a self referencing docker build.
Take the example:
|
|
If, when building this image you tag the built image with ubuntu:latest
by using the following command:
|
|
The first build may succeed but subsequent builds will fail.
This error might also be seen when using Docker Compose.
The following docker-compose.yml
file when combined with the above Dockerfile
will produce the same error as under the hood it will result in the same build command being executed.
|
|