Project based on official CentOS image. Applies necessary steps to get images to run on the DOI network, namely:
A Dockerfile is provided to simplify image building. Most basically one may use the default image like so...
$ cd <PROJECT_ROOT>
$ docker build -t <TAG_NAME> .
Here
<PROJECT_ROOT>and<TAG_NAME>should be replaced with values appropriate to ones local environment and desired generated tag.
The Dockerfile also supports other base images, so if one desired to build from a different CentOS-like image, one may do as as follows:
$ cd <PROJECT_ROOT>
$ docker build \
--build-arg FROM_IMAGE=<OTHER_BASE_IMAGE> \
-t <TAG_NAME> \
.
Content type
Image
Digest
sha256:36763d5c6…
Size
129.2 MB
Last updated
about 2 years ago
docker pull usgs/centos