diff --git a/source/exegol-image/my-resources.rst b/source/exegol-image/my-resources.rst index 84a3e76..b4d8da4 100644 --- a/source/exegol-image/my-resources.rst +++ b/source/exegol-image/my-resources.rst @@ -36,12 +36,17 @@ In the container, the ``/opt/my-resources/bin/`` folder (``~/.exegol/my-resource .. code-block:: bash - # Example for a standalone binary + # Example for a standalone binary on your host cp /path/to/tool ~/.exegol/my-resources/bin/ + # or for a standalone binary on your exegol container + cp /path/to/tool /opt/my-resources/bin/ - # Example for a symbolic link + # Example for a symbolic link from your host git -C ~/.exegol/my-resources/ clone "https://github.com/someauthor/sometool" - ln -s ~/.exegol/my-resources/sometool/script.py ~/.exegol/my-resources/bin/script.py + ln -s ../sometool/script.py ~/.exegol/my-resources/bin/script.py + # or from your exegol container + git -C /opt/my-resources/ clone "https://github.com/someauthor/sometool" + ln -s /opt/my-resources/sometool/script.py /opt/my-resources/bin/script.py .. _Supported-setups: diff --git a/source/exegol-wrapper/advanced-uses.rst b/source/exegol-wrapper/advanced-uses.rst index a9e3239..67152c0 100644 --- a/source/exegol-wrapper/advanced-uses.rst +++ b/source/exegol-wrapper/advanced-uses.rst @@ -48,6 +48,7 @@ Within the ``~/.exegol/config.yml`` file, several settings can be configured to * ``auto_remove_image``: automatically remove outdated image when they are no longer used. (Default: ``True``) * ``auto_update_workspace_fs``: automatically modifies the permissions of folders and sub-folders in your workspace by default to enable file sharing between the container with your host user. (Default: ``False``) * ``default_start_shell``: default shell command to start. (Default: ``zsh``) + * ``enable_exegol_resources``: Enables or not the exegol resources module by default on any new container. (Default: ``True``) .. tabs:: diff --git a/source/the-exegol-project/python-wrapper.rst b/source/the-exegol-project/python-wrapper.rst index 0725f65..1fff650 100644 --- a/source/the-exegol-project/python-wrapper.rst +++ b/source/the-exegol-project/python-wrapper.rst @@ -359,6 +359,11 @@ See the option ``--device DEVICES`` of the :ref:`start action ` f Windows and MacOS installations are subject to the constraints and limitations of `Docker Desktop `__. +.. warning:: + Docker only load shared device at container **startup**. If you have to unplug / plug again your device it might **no longer works** until you **restart** the container with ``exegol restart ``. + + This bug occurs even if the ``/dev/ttyACM0`` device is still present in your container. + .. _feature_hostname: Custom hostname