Open TylerRick opened 6 years ago
Honestly since I started using Kubernetes, I've not touched docker-compose
a whole lot, so config
is new to me (but looks great)! That is really handy that config
merges multiple files for you, and yea it makes sense to be able to parse the protocol
Although I don't add the
/tcp
port myself, when you output your config usingdocker-compose config
, it looks like it automatically adds it for you.Note: The reason output my config using
docker-compose config
instead of using thedocker-compose.yml
as input directly is because my config is spread across multiple file usingextends
. Butcontainer-tx
is expecting a single file, anddocker-compose config
conveniently generates such as combined single file.I can easily work around by saving to a temporary file and removing the
/tcp
parts.