Closed
Description
In my environment I have multiple docker-compose files: one "base", and then some more to enable additional services/options. These additional docker-compose files override/modify the base image settings.
It would be nice if kompose supported this natively: kompose -f base.yml -f mod.yml -f other-mod.yml convert
.
Currently it simply ignores all but the last-mentioned file.
Metadata
Assignees
Labels
No labels
Activity
ankon commentedon Nov 8, 2016
This probably counts as "input argument validation", i.e. #87 is related.
surajssd commentedon Nov 11, 2016
@ankon or this could also look like
ankon commentedon Nov 11, 2016
In principle, yes. But I think it would be good to stay consistent with docker-compose's behavior here. Also note that ',' is a regular character that can appear in file names, so one needs to think about escaping; additionally it breaks at least my shell's tab completion logic :)
cdrage commentedon Dec 16, 2016
I can work on this once #304 is merged :) Add supported for multiple file import.