| 1 | = Build Singularity Containers from Dockerhub = |
| 2 | |
| 3 | [https://www.docker.com/ Docker] is a container virtualization environment that can establish development or runtime environments without modifying the environment of the base operating system. It runs on Mac and Windows. |
| 4 | |
| 5 | To use Singularity on Cypress, you have to login to one of Centos7 computing nodes. |
| 6 | {{{ |
| 7 | idev --partition=centos7 |
| 8 | }}} |
| 9 | |
| 10 | Load the module, |
| 11 | {{{ |
| 12 | module load singularity/3.9.0 |
| 13 | }}} |
| 14 | |
| 15 | Build from Docker Hub, for example ubuntu 14.04 |
| 16 | |
| 17 | {{{ |
| 18 | singularity pull docker://ubuntu:14.04 |
| 19 | }}} |