From 36156b77b4c2a4a8b7fbc41b323042a5e5253063 Mon Sep 17 00:00:00 2001 From: Hana Belay <66206865+earthcomfy@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:32:31 +0300 Subject: [PATCH] Update docs/2-local-development/developing-locally-docker.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fábio C. Barrionuevo da Luz --- .../developing-locally-docker.rst | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/2-local-development/developing-locally-docker.rst b/docs/2-local-development/developing-locally-docker.rst index 9b84abb84..e7eaa1ff5 100644 --- a/docs/2-local-development/developing-locally-docker.rst +++ b/docs/2-local-development/developing-locally-docker.rst @@ -246,7 +246,17 @@ The stack comes with a dedicated node service to build the static assets, watch Using Just for Docker Commands ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -We have included a ``justfile`` to simplify the use of frequent Docker commands for local development. Here are the available commands: +We have included a ``justfile`` to simplify the use of frequent Docker commands for local development. + +.. warning:: + Currently, "Just" does not reliably handle signals or forward them to its subprocesses. As a result, + pressing CTRL+C (or sending other signals like SIGTERM, SIGINT, or SIGHUP) may only interrupt + "Just" itself rather than its subprocesses. + For more information, see `this GitHub issue `_. + +First, install Just using one of the methods described in the `official documentation _. + +Here are the available commands: - ``just build`` Builds the Python image using the local Docker Compose file.