You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having issues building emulators using the docker-compose v2.
The issue caused by an usage of dummy image. When the ImageA is build from ImageB, docker-compose v2 does not necessarily wait until ImageB build is done. So, when the docker compose tries to build ImageA before the ImageB is built, it causes error.
To solve this issue, need to specify that ImageA depends on ImageB using -depends_on entry in docker-compose.yml.
The text was updated successfully, but these errors were encountered:
Having issues building emulators using the docker-compose v2.
The issue caused by an usage of dummy image. When the ImageA is build from ImageB, docker-compose v2 does not necessarily wait until ImageB build is done. So, when the docker compose tries to build ImageA before the ImageB is built, it causes error.
To solve this issue, need to specify that ImageA depends on ImageB using
-depends_on
entry indocker-compose.yml
.The text was updated successfully, but these errors were encountered: