As far as I can tell, the Testcontainers API for reusable containers is currently not exposed by testcontainers-clj. I've got it to work with
(-> (tc/create ...)
(tc/bind-filesystem! ...)
(update :container #(.withReuse % true))
This uses GenericContainer::withReuse.
Would you consider adding something like this to the library?
As far as I can tell, the Testcontainers API for reusable containers is currently not exposed by testcontainers-clj. I've got it to work with
This uses
GenericContainer::withReuse.Would you consider adding something like this to the library?