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
Crane aims to be docker-compose v3 compatible. However, in this case both v2 and v3 are the same, and they do support a string for build, not just an object.
I propose the following:
I'll add the incompatibility to the list of differences between Crane and Docker Compose
Then we can look into allowing a string for build as well.
Do you want to have a look into fixing it? If not, I will have a look at it sometime this month, but it is not top priority as there is a work-around.
Given the following
Dockerfile
:FROM debian:jessie
and this
docker-compose.yml
I get an error when I run
crane up
:The above syntax is valid, according to the official version 2 docker-compose reference.
If I change the
docker-compose.yml
to look like this, it works:The text was updated successfully, but these errors were encountered: