docker / libcompose

*Unmaintained/Deprecated* An experimental go library providing Compose-like functionality
https://godoc.org/github.com/docker/libcompose
Apache License 2.0
585 stars 191 forks source link

Update docker version and client create arguments #506

Closed beornf closed 5 years ago

beornf commented 5 years ago

Bumped up the Docker commit number as this version brings the Close() method to the APIClient interface.

This update means the TLS setup in libcompose can be simplified as this is done with moby client.WithHost() and the deprecated NewClient method has been replaced with NewClientWithOpts.

See https://github.com/moby/moby/blob/0ede01237c9ab871f1b8db0364427407f3e46541/client/client.go#L195 and https://github.com/moby/moby/blob/0ede01237c9ab871f1b8db0364427407f3e46541/client/client.go#L293 for reference.