Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PRESCOTT
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mustafa Tekpinar
PRESCOTT
Commits
b537f05c
Commit
b537f05c
authored
Oct 04, 2023
by
Mustafa Tekpinar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Singularityfile.sh to the repository.
parent
f2e02c2f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
Singularityfile.sh
Singularityfile.sh
+27
-0
No files found.
Singularityfile.sh
0 → 100644
View file @
b537f05c
#!/bin/bash
#You can not run docker on many high performance computing systems
#due to sudo permissions etc.
#However, singularity can be run on them. Due to this reason, I prepared
#this file to show how you can prepare a singulartiy sif file from docker
#image of PRESCOTT.
#STEP 0: First thing first! You must have singularity installed on your system.
# If not, you can find the installation instructions here:
# https://github.com/sylabs/singularity/blob/main/INSTALL.md
# In addition, there are different releases(deb, rpm or source) in the following page:
# https://github.com/sylabs/singularity/releases
#STEP 1: Building singularity sandbox from the docker image online:
# Please note that you will need to change (v1.5.0) to the version you want
# if there is an update in the version.
singularity build
--sandbox
prescott-docker-v1.5.0 docker://tekpinar/prescott-docker:v1.5.0
#STEP 2: Converting the folder to a single sif file:
singularity build prescott-docker-v1.5.0.sif prescott-docker-v1.5.0
#STEP 3: Running escott with the sif file:
singularity
exec
prescott-docker-v1.5.0.sif escott
-h
#STEP 4: Running prescott with the sif file:
singularity
exec
prescott-docker-v1.5.0.sif prescott
-h
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment