container-transform icon indicating copy to clipboard operation
container-transform copied to clipboard

Container web is missing required parameter "image".

Open ghost opened this issue 4 years ago • 0 comments

I want to convert Docker compose file to JSON file by using: cat docker-compose.prod.yml | container-transform -v command. For the services with the image parameter is works, but for the services with build parameter gives this error.

Successful:

db:
        image: postgres

Failed:

 db:
        build: 
            context: .
            dockerfile: Dockerfile

How can I solve this problem?

ghost avatar May 05 '20 14:05 ghost