https://github.com/hdfgroup/hdf-docker
Dockerfiles for HDF related containers
https://github.com/hdfgroup/hdf-docker
Last synced: 8 months ago
JSON representation
Dockerfiles for HDF related containers
- Host: GitHub
- URL: https://github.com/hdfgroup/hdf-docker
- Owner: HDFGroup
- License: bsd-3-clause
- Created: 2016-03-04T18:33:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T08:47:16.000Z (over 1 year ago)
- Last Synced: 2025-10-08T03:09:18.967Z (8 months ago)
- Language: Dockerfile
- Size: 52.7 KB
- Stars: 16
- Watchers: 5
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.