mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
merge branch feat106-external-logo into internal
This commit is contained in:
commit
cfe31fbeac
4 changed files with 6 additions and 1 deletions
|
@ -19,6 +19,7 @@ func main() {
|
|||
swarm = kingpin.Flag("swarm", "Swarm cluster support").Default("false").Short('s').Bool()
|
||||
labels = pairs(kingpin.Flag("hide-label", "Hide containers with a specific label in the UI").Short('l'))
|
||||
registries = pairs(kingpin.Flag("registries", "Supported Docker registries").Short('r'))
|
||||
logo = kingpin.Flag("logo", "URL for the logo displayed in the UI").String()
|
||||
)
|
||||
kingpin.Parse()
|
||||
|
||||
|
@ -38,6 +39,7 @@ func main() {
|
|||
Swarm: *swarm,
|
||||
HiddenLabels: *labels,
|
||||
Registries: *registries,
|
||||
Logo: *logo,
|
||||
}
|
||||
|
||||
api := newAPI(apiConfig)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue