docs(logo): add documentation about the --logo flag (#141)
parent
496de850c1
commit
d941fef8d6
12
README.md
12
README.md
|
@ -85,6 +85,18 @@ $ docker run -d -p 9000:9000 cloudinovasi/cloudinovasi-ui -v /path/to/certs:/cer
|
||||||
|
|
||||||
*Note*: Replace `/path/to/certs` to the path to the certificate files on your disk.
|
*Note*: Replace `/path/to/certs` to the path to the certificate files on your disk.
|
||||||
|
|
||||||
|
### Use your own logo
|
||||||
|
|
||||||
|
You can use the `--logo` flag to specify an URL to your own logo.
|
||||||
|
|
||||||
|
For example, using the Docker logo:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ docker run -d -p 9000:9000 --privileged -v /var/run/docker.sock:/var/run/docker.sock cloudinovasi/cloudinovasi-ui --logo "https://www.docker.com/sites/all/themes/docker/assets/images/brand-full.svg"
|
||||||
|
```
|
||||||
|
|
||||||
|
The custom logo will replace the CloudInovasi logo in the UI.
|
||||||
|
|
||||||
### Hide containers with specific labels
|
### Hide containers with specific labels
|
||||||
|
|
||||||
You can hide specific containers in the containers view by using the `--hide-label` or `-l` options and specifying a label.
|
You can hide specific containers in the containers view by using the `--hide-label` or `-l` options and specifying a label.
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
.logo {
|
.logo {
|
||||||
display: inline;
|
display: inline;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 160px;
|
max-width: 155px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
max-height: 55px;
|
max-height: 55px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
|
Loading…
Reference in New Issue