clj-docker-client icon indicating copy to clipboard operation
clj-docker-client copied to clipboard

An idiomatic, data-driven, REPL friendly Clojure Docker client

Results 5 clj-docker-client issues
Sort by recently updated
recently updated
newest added

This should enable the use from https://github.com/borkdude/babashka and would be cool AF!

enhancement
good first issue

```clojure (docker/invoke conn {:op :ContainerList :params {:filters (json/write-value-as-string {:label {const/server-name-label true}})}}) ``` While this makes kind of sense, because... ```edn {:doc "List containers\nReturns a list of containers. For details on...

enhancement

would be nice to have an async version of invoke. its possible now with returning the response as a stream, but can be styled after aws-api to return a channel.

enhancement

```clojure (docker/invoke containers {:op :PutContainerArchive :params {:id "does-not-exist" :path "/root" :inputStream (-> "test.tar.gz" (clojure.java.io/file) (clojure.java.io/input-stream))}}) ``` This causes the call to hang up indefinitely even when the client timeouts are...

bug

The same way `validate-requests` does in aws-api

enhancement
help wanted