Feature #19860
Updated by Tom Clegg almost 2 years ago
See [[Build docker images as part of a workflow]] A container request like this <pre><code class="yaml"> container_request: docker_image: "arvados/builtin" "" command: ["docker", "pull", "examplerepo:tag"] mounts: {} runtime_constraints: API: true RAM: 1000000000 output_path: "/" </code></pre> should pull the indicated image from docker hub and save it to a collection, appropriately tagged, so it can be used in a container request like this <pre><code class="yaml"> container_request: docker_image: "examplerepo:tag" # ... </code></pre>