This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-06-07
Channels
- # announcements (1)
- # beginners (123)
- # calva (17)
- # clj-kondo (16)
- # cljfx (1)
- # cljs-dev (4)
- # clojure-austin (1)
- # clojure-conj (1)
- # clojure-europe (28)
- # clojure-nl (3)
- # clojure-norway (25)
- # clojure-sweden (8)
- # clojure-uk (6)
- # conjure (4)
- # datahike (30)
- # datalevin (2)
- # datomic (2)
- # docker (4)
- # events (1)
- # fulcro (6)
- # graalvm (9)
- # gratitude (1)
- # honeysql (7)
- # hyperfiddle (29)
- # introduce-yourself (2)
- # jobs (2)
- # off-topic (18)
- # pedestal (5)
- # reitit (3)
- # releases (3)
- # remote-jobs (3)
- # scittle (18)
- # shadow-cljs (31)
- # tools-build (44)
- # tools-deps (10)
in https://docs.docker.com/engine/api/v1.45/#tag/Container/operation/ContainerCreate the HostConfig
could be used. Passing the Binds
array there
of the top of my mind, something like this:
(c/invoke docker
{:op :ContainerCreate
:params {:name "conny"}
:data {:Image "busybox:musl"
:Cmd ["ls"]
:HostConfig {:Binds ["host-path:container-path"]}}})
👍 1