Skip to content
Open
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
7 changes: 7 additions & 0 deletions doc/toolbox-create.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ toolbox\-create - Create a new Toolbx container

## SYNOPSIS
**toolbox create** [*--authfile FILE*]
[*--container NAME* | *-c NAME*]
[*--distro DISTRO* | *-d DISTRO*]
[*--image NAME* | *-i NAME*]
[*--release RELEASE* | *-r RELEASE*]
Expand Down Expand Up @@ -99,6 +100,12 @@ images. The FILE is usually set using `podman login`, and will be used by
The default location for FILE is `$XDG_RUNTIME_DIR/containers/auth.json` and
its format is specified in `containers-auth.json(5)`.

**--container** NAME, **-c** NAME

Assign the given NAME to the Toolbx container. This option is an alternative
to the positional *CONTAINER* argument. If both are provided, the positional
argument takes precedence.

**--distro** DISTRO, **-d** DISTRO

Create a Toolbx container for a different operating system DISTRO than the
Expand Down
9 changes: 8 additions & 1 deletion doc/toolbox-enter.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
toolbox\-enter - Enter a Toolbx container for interactive use

## SYNOPSIS
**toolbox enter** [*--distro DISTRO* | *-d DISTRO*]
**toolbox enter** [*--container NAME* | *-c NAME*]
[*--distro DISTRO* | *-d DISTRO*]
[*--release RELEASE* | *-r RELEASE*]
[*CONTAINER*]

Expand All @@ -29,6 +30,12 @@ analogous to a `podman start` followed by a `podman exec`.

The following options are understood:

**--container** NAME, **-c** NAME

Enter a Toolbx container with the given NAME. This option is an alternative
to the positional *CONTAINER* argument. If both are provided, the positional
argument takes precedence.

**--distro** DISTRO, **-d** DISTRO

Enter a Toolbx container for a different operating system DISTRO than the host.
Expand Down