We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ce98b commit d1476ebCopy full SHA for d1476eb
docs/source/getting-started/install.rst
@@ -286,6 +286,17 @@ Run the ``docker build`` source code checkout directory.::
286
cd scancode-toolkit
287
docker build --tag scancode-toolkit --tag scancode-toolkit:$(git describe --tags) .
288
289
+.. note::
290
+
291
+ As ``$(git describe --tags)`` is a Unix-style command. If you are on
292
+ windows, please run the ``git describe --tags`` separately to get the
293
+ output, then manually insert that value into your Docker command.
294
+ For instance, ::
295
296
+ C:\scancode-toolkit>git describe --tags
297
+ v32.4.0
298
+ C:\scancode-toolkit>docker build --tag scancode-toolkit --tag scancode-toolkit:v32.4.0 .
299
300
301
Run using Docker
302
^^^^^^^^^^^^^^^^
0 commit comments