Skip to content
This repository has been archived by the owner on Jun 13, 2021. It is now read-only.

Fix incorrect examples for docker app build command #738

Merged
merged 1 commit into from
Nov 13, 2019
Merged
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
4 changes: 2 additions & 2 deletions internal/commands/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ type buildOptions struct {
noResolveImage bool
}

const buildExample = `- $ docker app run --name myrunningapp myrepo/myapp:mytag
- $ docker app run 34be4a0c5f50 --name myrunningapp`
const buildExample = `- $ docker app build .
- $ docker app build --file myapp.dockerapp --tag myrepo/myapp:1.0.0 .`

func Cmd(dockerCli command.Cli) *cobra.Command {
var opts buildOptions
Expand Down