summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/faq.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 3698f854..e1864e6f 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -321,15 +321,15 @@ tox without any flags:
.. code-block:: shell
- docker run -v `pwd`:/home/tox/tests -it --rm 31z4/tox
+ docker run -v `pwd`:/tests -it --rm 31z4/tox
Because an entry point of the image is ``tox``, you can easily pass subcommands and flags:
.. code-block:: shell
- docker run -v `pwd`:/home/tox/tests -it --rm 31z4/tox run-parallel -e black,py311
+ docker run -v `pwd`:/tests -it --rm 31z4/tox run-parallel -e black,py311
-Note, that the image is configured with a working directory at ``/home/tox/tests``.
+Note, that the image is configured with a working directory at ``/tests``.
If you want to install additional Python versions/implementations or Ubuntu packages you can create a derivative image.
Just make sure you switch the user to ``root`` when needed and switch back to ``tox`` afterwards: