Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
1aed78e3
Commit
1aed78e3
authored
3 weeks ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
Edit README.md
parent
7d45d962
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+41
-3
41 additions, 3 deletions
README.md
with
41 additions
and
3 deletions
README.md
+
41
−
3
View file @
1aed78e3
...
@@ -21,10 +21,48 @@ making deployment easier. Deploying a docker image just needs a
...
@@ -21,10 +21,48 @@ making deployment easier. Deploying a docker image just needs a
docker pull which typically finishes in about a minute depending
docker pull which typically finishes in about a minute depending
on your local hardware and internet connection. Singularity
on your local hardware and internet connection. Singularity
containers bootstrap from the docker container but must be built
containers bootstrap from the docker container but must be built
by the user.
Detailed instructions can be found here:
by the user.
*
Docker:
[
OpenStructure Docker Instructions
](
https://git.scicore.unibas.ch/schwede/openstructure/tree/master/docker
)
### Docker
*
Singularity:
[
OpenStructure Singularity Instructions
](
https://git.scicore.unibas.ch/schwede/openstructure/tree/master/singularity
)
For complete documentation on using Docker with OpenStructure,
[
click here
](
https://git.scicore.unibas.ch/schwede/openstructure/tree/master/docker
)
.
This section provides a quick-start guide to help you get OpenStructure up and running using Docker.
Most docker installations require you to add
`sudo`
in front of the docker commands.
Get the latest Docker image from the OpenStructure registry:
```
docker pull registry.scicore.unibas.ch/schwede/openstructure:latest
```
And run a test script:
```
echo print\(\"Hello OST\"\) > test.py
docker run --rm -v $(pwd):/home registry.scicore.unibas.ch/schwede/openstructure:latest test.py
```
### Singularity
For complete documentation on using Singularity with OpenStructure,
[
click here
](
https://git.scicore.unibas.ch/schwede/openstructure/tree/master/singularity
)
.
This section provides a quick-start guide to help you get OpenStructure up and running using Singularity.
Building the singularity container requires root permissions:
```
wget https://git.scicore.unibas.ch/schwede/openstructure/-/raw/master/singularity/Singularity
sudo singularity build ost.img Singularity
```
And run a test script:
```
echo print\(\"Hello OST\"\) > test.py
singularity run --app OST ost.img test.py
```
### Build from source
OpenStructure is developed and tested across various Linux distributions.
OpenStructure is developed and tested across various Linux distributions.
You can find detailed build instructions and a list of required dependencies here:
You can find detailed build instructions and a list of required dependencies here:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment