Working With Container Images
Logging in to Depot¶
Using Docker¶
To authenticate with the CIQ container registry using Docker:
docker login depot.ciq.com -u DEPOT_USER -p DEPOT_TOKEN
Using Podman¶
To authenticate with the CIQ container registry using Podman:
podman login depot.ciq.com -u DEPOT_USER -p DEPOT_TOKEN
Finding Available Images¶
Navigate to My Products in the CIQ Depot Click on the product containing container images Select the OCI repository you wish to explore Browse through the available images and tags
Pulling Images¶
Using Docker¶
To pull an image from the CIQ container registry:
docker pull depot.ciq.com/path/to/image:tag
docker pull depot.ciq.com/rocky/9:latest
Using Podman¶
To pull an image using Podman:
podman pull depot.ciq.com/path/to/image:tag
Working with Images¶
Listing Available Tags¶
To see what tags are available for a specific image, you can browse through the repository in the Portal.
Running Containers¶
After pulling an image, you can run a container:
docker run -it depot.ciq.com/path/to/image:tag command
podman run -it depot.ciq.com/path/to/image:tag command