I have DockerContainer("scylladb/scylla"), which causes Could not pull image: write /var/lib/docker/tmp/GetImageBlob235684002: no space left on device because it tries to pull every tag, instead of just the latest one.
When I manually set the tag with DockerContainer("scylladb/scylla:latest"), it just got the latest tag and I no longer got the error.
I'm using com.whisk:docker-testkit-impl-docker-java_2.11:0.9.9.
I have
DockerContainer("scylladb/scylla")
, which causesCould not pull image: write /var/lib/docker/tmp/GetImageBlob235684002: no space left on device
because it tries to pull every tag, instead of just the latest one.When I manually set the tag with
DockerContainer("scylladb/scylla:latest")
, it just got the latest tag and I no longer got the error.I'm using
com.whisk:docker-testkit-impl-docker-java_2.11:0.9.9
.