Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/source/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,27 +73,27 @@ Here's how you can use Docker to access Metasyn's CLI:


.. note::
You can also specify which ``metasyn`` version to use in docker, by adding a tag to the docker image. For example, to use version 1.1.0, you can use the following command:
You can also specify which ``metasyn`` version to use in docker, by adding a tag to the docker image. For example, to use version 2.1.0, you can use the following command:

.. tab:: Installing a specific version

.. code-block:: console

docker pull sodateam/metasyn:v1.1.0
docker pull sodateam/metasyn:v2.1.0

.. tab:: Using a command on a specific version

.. tab:: Windows

.. code-block:: console

docker run -v %cd%:/wd sodateam/metasyn:v1.1.0 --help
docker run -v %cd%:/wd sodateam/metasyn:v2.1.0 --help

.. tab:: Unix or MacOS:

.. code-block:: console

docker run -v $(pwd):/wd sodateam/metasyn:v1.1.0 --help
docker run -v $(pwd):/wd sodateam/metasyn:v2.1.0 --help


Creating generative metadata
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


# The full version, including alpha/beta/rc tags
release = '2.0.0'
release = '2.1.0'

# -- General configuration ---------------------------------------------------

Expand Down
Loading