Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release wrapper v4.3.7 #68

Merged
merged 2 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
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: 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
Loading