diff --git a/_docs/data/data.yaml b/_docs/data/data.yaml index e9bdf0c..85a9f08 100644 --- a/_docs/data/data.yaml +++ b/_docs/data/data.yaml @@ -5,11 +5,6 @@ properties: type: bool required: false - drone_remote_url: - description: The git remote url. - type: string - required: false - mirror: description: Use a registry mirror to pull images. type: string @@ -146,7 +141,7 @@ properties: required: false compress: - description: Enable compression og the build context using gzip. + description: Enable compression of the build context using gzip. defaultValue: false type: bool required: false diff --git a/cmd/drone-docker/config.go b/cmd/drone-docker/config.go index 0a00194..5d07f52 100644 --- a/cmd/drone-docker/config.go +++ b/cmd/drone-docker/config.go @@ -15,13 +15,6 @@ func settingsFlags(settings *plugin.Settings, category string) []cli.Flag { Destination: &settings.Dryrun, Category: category, }, - &cli.StringFlag{ - Name: "remote.url", - EnvVars: []string{"DRONE_REMOTE_URL"}, - Usage: "git remote url", - Destination: &settings.Build.Remote, - Category: category, - }, &cli.StringFlag{ Name: "daemon.mirror", EnvVars: []string{"PLUGIN_MIRROR", "DOCKER_PLUGIN_MIRROR"}, @@ -198,7 +191,7 @@ func settingsFlags(settings *plugin.Settings, category string) []cli.Flag { &cli.BoolFlag{ Name: "compress", EnvVars: []string{"PLUGIN_COMPRESS"}, - Usage: "enable compression og the build context using gzip", + Usage: "enable compression of the build context using gzip", Value: false, Destination: &settings.Build.Compress, Category: category, diff --git a/plugin/impl.go b/plugin/impl.go index 30bc7bd..cf1034a 100644 --- a/plugin/impl.go +++ b/plugin/impl.go @@ -40,7 +40,6 @@ type Login struct { // Build defines Docker build parameters. type Build struct { - Remote string // Git remote URL Name string // Git commit sha used as docker default named tag Ref string // Git commit ref Branch string // Git repository branch