Skip to content
Merged
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
11 changes: 11 additions & 0 deletions docs/source/getting-started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,17 @@ Run the ``docker build`` source code checkout directory.::
cd scancode-toolkit
docker build --tag scancode-toolkit --tag scancode-toolkit:$(git describe --tags) .

.. note::

As ``$(git describe --tags)`` is a Unix-style command. If you are on
windows, please run the ``git describe --tags`` separately to get the
output, then manually insert that value into your Docker command.
For instance, ::

C:\scancode-toolkit>git describe --tags
v32.4.0
C:\scancode-toolkit>docker build --tag scancode-toolkit --tag scancode-toolkit:v32.4.0 .


Run using Docker
^^^^^^^^^^^^^^^^
Expand Down
Loading