Skip to content

HDFGroup/hdf-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3423b72 · Sep 4, 2024

History

77 Commits
Feb 23, 2018
May 5, 2016
Sep 3, 2024
Feb 28, 2018
Sep 10, 2019
Mar 18, 2016
Dec 3, 2016
Sep 19, 2018
Nov 28, 2019
Aug 27, 2020
Apr 25, 2022
Sep 3, 2024
Jan 24, 2023
Mar 4, 2016
Mar 4, 2016

Repository files navigation

hdf-docker

This repository contains Dockerfiles for various HDF-related containers.

Dockerfiles are text files that contain the instructions for building a Docker image.

Installation

The containers were all built using Docker 1.10.x.
Go to https://www.docker.com for information on how to install docker.

Building and running containers

To build a container, cd to one of the folders in this repository, and run:

$ docker build -t PATH .

To launch a container, run:

$ docker run -it PATH /bin/bash

See the Docker documentaion for information on the different docker commands that you can use.

Docker hub

Images of all the containers listed here are available on Docker Hub: https://hub.docker.com.

For example, running:

$ docker pull hdfgroup/hdf5lib:1.8.16

will retrieve the container with the 1.8.16 release of the HDF5 library.

Or you can simply run:

$ docker run -it hdfgroup/hdf5lib:1.8.16 /bin/bash

And the image will be downloaded from Docker Hub if it is not already present on your machine and then run.