libcompose
libcompose copied to clipboard
*Unmaintained/Deprecated* An experimental go library providing Compose-like functionality
Hi, I can't seem to be able to get libcompose to respect my logger settings. If I do smth like: ``` import ( "github.com/sirupsen/logrus" ... ) func main() { logger...
Currently when attempting to run bring services up with libcompose, on the second attempt the `Up` command fails with `Volume "node_modules" needs to be recreated - driver has changed`. The...
Added portainer as a consumer of libcompose
Added TLS config to client options for configuring more advanced TLS options such as GetClientCertificate, ServerName etc.
To avoid conflicts when importing in other projects (dependency hell between `docker/docker` vs `docker/engine`). On an external project, I'd get errors like this without this PR: ``` $ go get...
As per suggestion in README cc @vdemeester LMK if you can think of other things that require tweaking before a merge :)
Fix ability to use `go test ./...`, by changing the file suffix for the schema template (which is actually part of a different package) Some tests fail (mostly in `integration`),...
Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name being declared. From [effective go](https://golang.org/doc/effective_go.html#commentary). I generated...