Skip to content

Commit

Permalink
Fix: add docker prefix to enterprise related docker flags (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
kminehart authored Sep 25, 2024
1 parent 2c6566c commit 6e593b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arguments/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@ var (
}

EntDockerRegistryFlag = &cli.StringFlag{
Name: "enterprise-registry",
Name: "docker-enterprise-registry",
Usage: "Prefix the image name with the registry provided",
Value: "docker.io",
}
EntDockerOrgFlag = &cli.StringFlag{
Name: "enterprise-org",
Name: "docker-enterprise-org",
Usage: "Overrides the organization of the images",
Value: "grafana",
}
EntDockerRepoFlag = &cli.StringFlag{
Name: "enterprise-repo",
Name: "docker-enterprise-repo",
Usage: "Overrides the docker repository of the built images",
Value: "grafana-enterprise",
}
Expand Down

0 comments on commit 6e593b1

Please sign in to comment.