Project

General

Profile

Feature #19860

Updated by Tom Clegg over 1 year 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> 

Back