mirror of
https://github.com/grafana/grafana.git
synced 2024-12-30 10:47:30 -06:00
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
|
||
|
}
|