Skip to content
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
2 changes: 1 addition & 1 deletion docs/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ FLAG DESCRIPTIONS

-v, --volume=<value>... update volume mounts for the container

This flag can be used to add volume mounts to the container. It can be used multiple times to mount multiple
This flag can be used to replace volume mounts of the container. It can be used multiple times to mount multiple
volumes.Needs to be in the format <host-path>:<container-path>. If you specify a file path as volume, this will
mount a path from your hosting environment's file system (NOT your local file system) into the container. You can
also specify a named volume, which needs to be created beforehand.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/container/update.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class Update extends ExecRenderBaseCommand<typeof Update, Result> {
volume: Flags.string({
summary: "update volume mounts for the container",
description:
"This flag can be used to add volume mounts to the container. It can be used multiple times to mount multiple volumes." +
"This flag can be used to replace volume mounts of the container. It can be used multiple times to mount multiple volumes." +
"" +
"Needs to be in the format <host-path>:<container-path>. " +
"" +
Expand Down