mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 22:32:24 +08:00
20 lines
504 B
Go
20 lines
504 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/build/daggerbuild/pipelines"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var DockerPublishCommand = &cli.Command{
|
|
Name: "publish",
|
|
Action: PipelineActionWithPackageInput(pipelines.PublishDocker),
|
|
Usage: "Using a grafana.docker.tar.gz as input (ideally one built using the 'package' command), publish a docker image and manifest",
|
|
Flags: JoinFlagsWithDefault(
|
|
PackageInputFlags,
|
|
DockerFlags,
|
|
DockerPublishFlags,
|
|
GCPFlags,
|
|
ConcurrencyFlags,
|
|
),
|
|
}
|