We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
docker
1 parent c0fdb6b commit df17e70Copy full SHA for df17e70
codesectools/cli.py
@@ -206,8 +206,15 @@ def download(
206
207
@cli.command()
208
def docker(
209
- target: Annotated[Path, typer.Option()] = Path("."),
210
- isolation: Annotated[bool, typer.Option()] = False,
+ target: Annotated[
+ Path, typer.Option(help="The directory to mount inside the container.")
211
+ ] = Path("."),
212
+ isolation: Annotated[
213
+ bool,
214
+ typer.Option(
215
+ help="Enable network isolation for the container (disables host network sharing)."
216
+ ),
217
+ ] = False,
218
) -> None:
219
"""Start the Docker environment for the specified target (current directory by default)."""
220
from codesectools.shared.docker import AnalysisEnvironment
0 commit comments