Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 6b05ad1

Browse files
committed
hide render command
Signed-off-by: Guillaume Lours <[email protected]>
1 parent 8504449 commit 6b05ad1

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

e2e/testdata/plugin-usage-experimental.golden

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Commands:
1717
ls List the installations and their last known installation result
1818
pull Pull an application package from a registry
1919
push Push an application package to a registry
20-
render Render the Compose file for an Application Package
2120
rm Remove an application
2221
upgrade Upgrade an installed application
2322
validate Checks the rendered application is syntactically correct

e2e/testdata/plugin-usage.golden

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Commands:
1717
ls List the installations and their last known installation result
1818
pull Pull an application package from a registry
1919
push Push an application package to a registry
20-
render Render the Compose file for an Application Package
2120
rm Remove an application
2221
upgrade Upgrade an installed application
2322
validate Checks the rendered application is syntactically correct

internal/commands/render.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func renderCmd(dockerCli command.Cli) *cobra.Command {
2626
Short: "Render the Compose file for an Application Package",
2727
Example: `$ docker app render myapp.dockerapp --set key=value`,
2828
Args: cli.RequiresMaxArgs(1),
29+
Hidden: true,
2930
RunE: func(cmd *cobra.Command, args []string) error {
3031
return runRender(dockerCli, firstOrEmpty(args), opts)
3132
},

0 commit comments

Comments
 (0)