mirror of https://github.com/portainer/portainer
merge branch feat106-external-logo into internal
commit
cfe31fbeac
|
@ -126,3 +126,4 @@ The following options are available for the `ui-for-docker` binary:
|
||||||
* `--tlscert`: Path to the TLS certificate file (default `/certs/cert.pem`)
|
* `--tlscert`: Path to the TLS certificate file (default `/certs/cert.pem`)
|
||||||
* `--tlskey`: Path to the TLS key (default `/certs/key.pem`)
|
* `--tlskey`: Path to the TLS key (default `/certs/key.pem`)
|
||||||
* `--hide-label`, `-l`: Hide containers with a specific label in the UI
|
* `--hide-label`, `-l`: Hide containers with a specific label in the UI
|
||||||
|
* `--logo`: URL to a picture to be displayed as a logo in the UI
|
||||||
|
|
|
@ -19,6 +19,7 @@ func main() {
|
||||||
swarm = kingpin.Flag("swarm", "Swarm cluster support").Default("false").Short('s').Bool()
|
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'))
|
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'))
|
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()
|
kingpin.Parse()
|
||||||
|
|
||||||
|
@ -38,6 +39,7 @@ func main() {
|
||||||
Swarm: *swarm,
|
Swarm: *swarm,
|
||||||
HiddenLabels: *labels,
|
HiddenLabels: *labels,
|
||||||
Registries: *registries,
|
Registries: *registries,
|
||||||
|
Logo: *logo,
|
||||||
}
|
}
|
||||||
|
|
||||||
api := newAPI(apiConfig)
|
api := newAPI(apiConfig)
|
||||||
|
|
|
@ -10,6 +10,7 @@ type Settings struct {
|
||||||
Swarm bool `json:"swarm"`
|
Swarm bool `json:"swarm"`
|
||||||
HiddenLabels pairList `json:"hiddenLabels"`
|
HiddenLabels pairList `json:"hiddenLabels"`
|
||||||
Registries pairList `json:"registries"`
|
Registries pairList `json:"registries"`
|
||||||
|
Logo string `json:"logo"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// configurationHandler defines a handler function used to encode the configuration in JSON
|
// configurationHandler defines a handler function used to encode the configuration in JSON
|
||||||
|
|
|
@ -32,7 +32,8 @@
|
||||||
<ul class="sidebar">
|
<ul class="sidebar">
|
||||||
<li class="sidebar-main">
|
<li class="sidebar-main">
|
||||||
<a ng-click="toggleSidebar()">
|
<a ng-click="toggleSidebar()">
|
||||||
<img src="images/logo.png" class="img-responsive logo" alt="logo">
|
<img ng-if="config.logo" ng-src="{{ config.logo }}" class="img-responsive logo" alt="CloudInovasi UI">
|
||||||
|
<img ng-if="!config.logo" src="images/logo.png" class="img-responsive logo" alt="CloudInovasi UI">
|
||||||
<span class="menu-icon glyphicon glyphicon-transfer"></span>
|
<span class="menu-icon glyphicon glyphicon-transfer"></span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue