├── .github ├── AUTHORS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-or-documentation-request.md └── workflows │ └── build-containers.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── VERSION ├── addLabel.py ├── docker2singularity.sh ├── img └── logo.png ├── scripts ├── actions │ ├── exec │ ├── run │ ├── shell │ ├── start │ └── test └── env │ ├── 01-base.sh │ ├── 90-environment.sh │ ├── 94-appsbase.sh │ ├── 95-apps.sh │ ├── 99-base.sh │ └── 99-runtimevars.sh └── test.sh /.github/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/AUTHORS.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: vsoch 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-or-documentation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/ISSUE_TEMPLATE/question-or-documentation-request.md -------------------------------------------------------------------------------- /.github/workflows/build-containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/.github/workflows/build-containers.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 4.0.1 2 | -------------------------------------------------------------------------------- /addLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/addLabel.py -------------------------------------------------------------------------------- /docker2singularity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/docker2singularity.sh -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/img/logo.png -------------------------------------------------------------------------------- /scripts/actions/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/actions/exec -------------------------------------------------------------------------------- /scripts/actions/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/actions/run -------------------------------------------------------------------------------- /scripts/actions/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/actions/shell -------------------------------------------------------------------------------- /scripts/actions/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/actions/start -------------------------------------------------------------------------------- /scripts/actions/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/actions/test -------------------------------------------------------------------------------- /scripts/env/01-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/env/01-base.sh -------------------------------------------------------------------------------- /scripts/env/90-environment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #Custom environment shell code should follow 3 | 4 | -------------------------------------------------------------------------------- /scripts/env/94-appsbase.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/env/95-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/env/95-apps.sh -------------------------------------------------------------------------------- /scripts/env/99-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/env/99-base.sh -------------------------------------------------------------------------------- /scripts/env/99-runtimevars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/scripts/env/99-runtimevars.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singularityhub/docker2singularity/HEAD/test.sh --------------------------------------------------------------------------------