.nh .TH "apptainer" "1" "Jul 2026" "Auto generated by spf13/cobra" "" .SH NAME apptainer-pull - Pull an image from a URI .SH SYNOPSIS \fBapptainer pull [pull options...] [output file] \fP .SH DESCRIPTION The 'pull' command allows you to download or build a container from a given URI. Supported URIs include: .PP library: Pull an image from the currently configured library library://user/collection/container[:tag] .PP docker: Pull a Docker/OCI image from Docker Hub, or another OCI registry. docker://user/image:tag .PP shub: Pull an image from Singularity Hub shub://user/image:tag .PP oras: Pull a SIF image from an OCI registry that supports ORAS. oras://registry/namespace/image:tag .PP ipfs: Pull a SIF image from an IPFS cluster, using a HTTP gateway. ipfs://cid .PP http, https: Pull an image using the http(s?) protocol https://example.com/alpine.sif .SH OPTIONS \fB--arch\fP="amd64" architecture to pull from library .PP \fB--arch-variant\fP="" architecture variant to pull from library .PP \fB--authfile\fP="" Docker-style authentication file to use for writing/reading OCI registry credentials .PP \fB--dir\fP="" download images to the specific directory .PP \fB--disable-cache\fP[=false] do not use or create cached images/blobs .PP \fB--docker-host\fP="" specify a custom Docker daemon host .PP \fB--docker-login\fP[=false] login to a Docker Repository interactively .PP \fB-F\fP, \fB--force\fP[=false] overwrite an image file if it exists .PP \fB-h\fP, \fB--help\fP[=false] help for pull .PP \fB--library\fP="" download images from the provided library .PP \fB--no-cleanup\fP[=false] do NOT clean up bundle after failed build, can be helpful for debugging .PP \fB--no-https\fP[=false] use http instead of https for docker:// oras:// and library:///... URIs .PP \fB--reproducible\fP[=false] creates a reproducible build by using the creation date of the source image .PP \fB--sandbox\fP[=false] pull image as sandbox format (chroot directory structure) .SH EXAMPLE .EX From a library $ apptainer pull alpine.sif library://alpine:latest From Docker $ apptainer pull tensorflow.sif docker://tensorflow/tensorflow:latest $ apptainer pull --arch arm --arch-variant 6 alpine.sif docker://alpine:latest From Shub $ apptainer pull apptainer-images.sif shub://vsoch/apptainer-images From supporting OCI registry (e.g. Azure Container Registry) $ apptainer pull image.sif oras://.azurecr.io/namespace/image:tag From available IPFS cluster (using a local HTTP IPFS gateway) $ apptainer pull lolcow.sif ipfs://bafybeice667c6gxovimsb6gnk6vex7vhzluhkl5hjv4ac4lhilxn52c43m .EE .SH SEE ALSO \fBapptainer(1)\fP .SH HISTORY 30-Jul-2026 Auto generated by spf13/cobra