@@ -109,7 +109,7 @@ End of the tab
109109
110110 docker compose build
111111
112- #. Build a single images by running:
112+ #. Build a single image by running:
113113
114114 .. code-block ::
115115
@@ -182,7 +182,7 @@ The docker run command is utilized to create and run a container from a Docker
182182image. Various options are available to customize the container creation
183183process.
184184
185- - ``--detach `` Runs the container in detached mode, allowing it to run in the background.
185+ - ``--detach `` Runs the container in detached mode, enabling it to run in the background.
186186- ``--interactive `` Enables interactive mode, providing a TTY session for connecting to the container.
187187- ``--tty `` Allocates a pseudo-TTY, ensuring proper formatting and display of the container's output.
188188- ``--network="host" `` Shares the host's network stack with the container, enabling network connectivity.
@@ -236,7 +236,7 @@ Command breakdown
236236The ``docker exec `` command is used to execute commands within a Docker
237237container. It provides several options to enhance the execution experience.
238238
239- - ``--interactive `` Allows interactive mode, enabling interaction with the command executed within the container.
239+ - ``--interactive `` Enables interactive mode, enabling interaction with the command executed within the container.
240240- ``--tty `` Allocates a pseudo-TTY, ensuring proper formatting and display of the executed command's output.
241241- ``<container-name> `` Specifies the name or ID of the target container in which the command should be executed.
242242- ``<command> `` Represents the shell command that you want to execute within the container.
0 commit comments