Difference between revisions of "Docker Hub"
From SCECpedia
Jump to navigationJump to search (Created page with "SCEC has created a Docker Hub repository as a way to distribute SCEC software on most computer types. SCEC Docker Hub is intended to parallel SCEC Github. The organization in...") |
|||
Line 2: | Line 2: | ||
== UCVM Prototype == | == UCVM Prototype == | ||
− | docker run --rm -it --mount type=bind, | + | docker run --rm -it --mount type=bind,src="$(pwd)"/target,dst=/app/target sceccode/miniucvm:1.0 |
+ | |||
+ | |||
+ | -- rm Automatically remove the container when it exits | ||
+ | -- it interactive terminal? | ||
+ | --mount Attach a filesystem mount to the container | ||
== Related Entries == | == Related Entries == | ||
*[[UCVM]] | *[[UCVM]] | ||
*[[CVM-H]] | *[[CVM-H]] |
Revision as of 01:49, 16 February 2020
SCEC has created a Docker Hub repository as a way to distribute SCEC software on most computer types. SCEC Docker Hub is intended to parallel SCEC Github. The organization in both cases in SCECcode (or sceccode).
UCVM Prototype
docker run --rm -it --mount type=bind,src="$(pwd)"/target,dst=/app/target sceccode/miniucvm:1.0
-- rm Automatically remove the container when it exits -- it interactive terminal? --mount Attach a filesystem mount to the container