Container Image Library¶
Sell It¶
Pre-built container images give you ready-to-run environments without installing software on your machine. They ensure your code runs the same on every system and make sharing workflows straightforward.
Show It¶
The Container Image Library lists images with descriptions and tags. Each entry links to a Docker or Apptainer image that you can pull to see a fully configured environment.
Do It¶
- Browse the library. Look for an image that matches the tools you need.
- Pull the image. Use
docker pull <image>
orapptainer pull <image>
to download it. - Run it. Start the container with
docker run -it <image> /bin/bash
or the equivalent Apptainer command to open a shell inside the environment. - Mount data. Add
-v /path/to/data:/data
to access files from your machine inside the container.
Review It¶
Check the tools and versions inside the container and note which images fit your workflow. Reuse the image in future projects or use it as a base for your own custom container.