Skip to content
Snippets Groups Projects
Verified Commit 50de2d27 authored by Xavier Robin's avatar Xavier Robin
Browse files

doc: clarify docker pull instructions

It was unclear what <IMAGE NAME> should be upon docker pull.
Also removed the single and occurrence of <TAG> which was unnecessary
as we always have a 'latest' tag anyways.
parent 92dc4e87
No related branches found
No related tags found
No related merge requests found
...@@ -3,24 +3,27 @@ OST Docker ...@@ -3,24 +3,27 @@ OST Docker
.. note:: .. note::
For many docker installations it is required to run docker commands as root. As For most docker installations it is required to run docker commands as root. As
this depends on set up, we skip the ``sudo`` in all commands. this depends on set up, we skip the ``sudo`` in all commands.
Obtain Docker image from the OST registry Obtain Docker image from the OST registry
----------------------------------------- -----------------------------------------
OST has its own container registry inside GitLab. There we try to keep one OST has its own container registry inside GitLab. We always keep an
image for the latest stable version of OST. You can import it by image for the latest stable version of OST. You can import it with:
.. code-block:: bash .. code-block:: bash
docker pull registry.scicore.unibas.ch/schwede/openstructure:<TAG> docker pull registry.scicore.unibas.ch/schwede/openstructure:latest
and just start using it without the overhead to build it yourself. A list of and just start using it without the overhead to build it yourself:
available tags can be found on our
`GitLab registry page <https://git.scicore.unibas.ch/schwede/openstructure/container_registry/>`_.
A tag named ``latest`` is always available, pointing to the current stable OST release.
.. code-block:: bash
docker run --rm -v $(pwd):/home registry.scicore.unibas.ch/schwede/openstructure:latest --version
In the rest of this documentation, the ``<IMAGE NAME>`` we refer to will be
``registry.scicore.unibas.ch/schwede/openstructure:latest``.
Build Docker image Build Docker image
------------------ ------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment