Skip to content

Commit

Permalink
Merge pull request #68 from ThePorgs/dev-wrapper
Browse files Browse the repository at this point in the history
Release wrapper v4.3.7
  • Loading branch information
Dramelac authored Oct 27, 2024
2 parents 9a3da96 + afeb0e1 commit 71be61a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 8 additions & 3 deletions source/exegol-image/my-resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions source/exegol-wrapper/advanced-uses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::

Expand Down
5 changes: 5 additions & 0 deletions source/the-exegol-project/python-wrapper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,11 @@ See the option ``--device DEVICES`` of the :ref:`start action <start_options>` f

Windows and MacOS installations are subject to the constraints and limitations of `Docker Desktop <https://docs.docker.com/desktop/faqs/#can-i-pass-through-a-usb-device-to-a-container>`__.

.. 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 <container_name>``.

This bug occurs even if the ``/dev/ttyACM0`` device is still present in your container.

.. _feature_hostname:

Custom hostname
Expand Down

0 comments on commit 71be61a

Please sign in to comment.