An idiomatic, data-driven, REPL friendly Clojure Docker client inspired from Cognitect's AWS client.
See this for documentation for versions before 0.4.0.
The README here is for the current master branch and may not reflect the released version.
Please raise issues here for any new feature requests!
Leiningen/Boot
[lispyclouds/clj-docker-client "0.4.0"]
Clojure CLI/deps.edn
{lispyclouds/clj-docker-client {:mvn/version "0.4.0"}}
Gradle
compile 'lispyclouds:clj-docker-client:0.4.0'
Maven
<dependency>
<groupId>lispyclouds</groupId>
<artifactId>clj-docker-client</artifactId>
<version>0.4.0</version>
</dependency>
Auto generated code docs can be found here
This uses Docker's HTTP REST API to run. See the section API version matrix in https://docs.docker.com/develop/sdk/ to find the corresponding API version for the Docker daemon you're running.
See the page about the docker REST API to learn more about the params to pass.
(require '[clj-docker-client.core :as docker])
This library aims to be a as thin layer as possible between you and Docker. This consists of following public functions:
Connect to the docker daemon's UNIX socket and create a connection.
(def conn (docker/connect {:uri "unix:///var/run/docker.sock"}))
Lists the categories of operations supported. Can be bound to an API version.
(docker/categories) ; Latest version
(docker/categories "v1.40") ; Locked to v1.40
#_=> #{:system
:exec
:images
:secrets
:events
:_ping
:containers
:auth
:tasks
:volumes
:networks
:build
:nodes
:commit
:plugins
:info
:swarm
:distribution
:version
:services
:configs
:session}
Creates a client scoped to the operations of a given category. Can be bound to an API version.
(def images (docker/client {:category :images
:conn conn})) ; Latest version
(def containers (docker/client {:category :containers
:conn conn
:api-version "v1.40"})) ; Container client for v1.40
Lists the supported ops by a client.
(docker/ops images)
#_=> (:ImageList
:ImageCreate
:ImageInspect
:ImageHistory
:ImagePush
:ImageTag
:ImageDelete
:ImageSearch
:ImagePrune
:ImageGet
:ImageGetAll
:ImageLoad)
Returns the doc of an operation in a client.
(docker/doc images :ImageList)
#_=> {:doc
"List Images\nReturns a list of images on the server. Note that it uses a different, smaller representation of an image than inspecting a single image.",
:params
({:name "all", :type "boolean"}
{:name "filters", :type "string"}
{:name "digests", :type "boolean"})}
Invokes an operation via the client and a given operation map and returns the result data.
; Pulls the busybox:musl image from Docker hub
(docker/invoke images {:op :ImageCreate
:params {:fromImage "busybox:musl"}})
; Creates a container named conny from it
(docker/invoke containers {:op :ContainerCreate
:params {:name "conny"
:body {:Image "busybox:musl"
:Cmd "ls"}}})
The operation map is of the following structure:
{:op :NameOfOp
:params {:param-1 "value1"
:param-2 true}}
Takes an optional key as-stream?
. Returns an InputStream if passed as true. This is useful for streaming responses like logs, events etc, which run till the container is up.
{:op :NameOfOp
:params {:param-1 "value1"
:param-2 true}
:as-stream? true}
v1.40
API docs.stream
is mapped to java.io.InputStream
and when the API needs a stream as an input, send an InputStream. When it returns a stream, the call can possibly block till the container or source is up and its recommended to pass the as-stream?
param as true to the invoke call and read it asynchronously. See this section for more info.(def conn (docker/connect {:uri "unix:///var/run/docker.sock"}))
(def images (docker/client {:category :images
:conn conn}))
(docker/invoke images {:op :ImageCreate
:params {:fromImage "busybox:musl"}})
(def containers (docker/client {:category :containers
:conn conn}))
(docker/invoke containers {:op :ContainerCreate
:params {:name "conny"
:body {:Image "busybox:musl"
:Cmd "sh -c 'i=1; while :; do echo $i; sleep 1; i=$((i+1)); done"}}})
(docker/invoke containers {:op :ContainerStart
:params {:id "conny"}})
; fn to react when data is available
(defn react-to-stream
[stream reaction-fn]
(future
(with-open [rdr (clojure.java.io/reader stream)]
(loop [r (java.io.BufferedReader. rdr)]
(when-let [line (.readLine r)]
(reaction-fn line)
(recur r))))))
(def log-stream (docker/invoke containers {:op :ContainerLogs
:params {:id "conny"
:follow true
:stdout true}
:as-stream? true}))
(react-to-stream events println) ; prints the logs line by line when they come.
And anything else is possible!
Copyright © 2020 Rahul De and contributors.
Distributed under the LGPLv3+ License. See LICENSE.
Can you improve this documentation? These fine people already did:
Rahul De, Praveen & Rahuλ DéEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close