diff --git a/README.md b/README.md index 06efe7b36..60edfa37a 100644 --- a/README.md +++ b/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. +### 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 You can hide specific containers in the containers view by using the `--hide-label` or `-l` options and specifying a label. diff --git a/assets/css/app.css b/assets/css/app.css index 3750f277c..01d4780c2 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -117,7 +117,7 @@ .logo { display: inline; width: 100%; - max-width: 160px; + max-width: 155px; height: 100%; max-height: 55px; margin-bottom: 5px;