mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 18:01:40 -06:00
93e78e2146
* Move fetch images from build-pipeline * Modify drone * Replace zerolog with builtin log * Fix lint
16 lines
280 B
Go
16 lines
280 B
Go
package docker
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/build/config"
|
|
)
|
|
|
|
type Config struct {
|
|
Bucket string
|
|
Edition string
|
|
Tag string
|
|
Distribution []config.Distribution
|
|
Archs []config.Architecture
|
|
DockerHubRepo string
|
|
Security bool
|
|
}
|