Skip to content

Commit

Permalink
fix: adjust docker api version setting
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdre committed Aug 4, 2024
1 parent e753673 commit ea969e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/app_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type AppConfig struct {
GitAccessToken string `env:"GIT_ACCESS_TOKEN"` // GitAccessToken is the access token used to authenticate with the Git server (e.g. GitHub) for private repositories
AuthType string `env:"AUTH_TYPE" envDefault:"oauth2"` // AuthType is the type of authentication to use when cloning repositories
SkipTLSVerification bool `env:"SKIP_TLS_VERIFICATION" envDefault:"false"` // SkipTLSVerification skips the TLS verification when cloning repositories.
DockerAPIVersion string `env:"DOCKER_API_VERSION" envDefault:"1.40"` // DockerAPIVersion is the version of the Docker API to use
DockerAPIVersion string `env:"DOCKER_API_VERSION" envDefault:"v1.40"` // DockerAPIVersion is the version of the Docker API to use
}

// GetAppConfig returns the configuration
Expand Down

0 comments on commit ea969e0

Please sign in to comment.