fix syntax error in extra.css
parent
22d4763c31
commit
f0583911da
|
@ -17,19 +17,12 @@
|
||||||
|
|
||||||
.md-header-nav__button.md-logo img, .md-header-nav__button.md-logo svg {
|
.md-header-nav__button.md-logo img, .md-header-nav__button.md-logo svg {
|
||||||
display: block;
|
display: block;
|
||||||
width: rem;
|
width: 1.2rem;
|
||||||
height: 1.2rem;
|
height: 1.2rem;
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
margin-top: -8px;
|
margin-top: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-header__button.md-logo img, .md-header__button.md-logo svg {
|
|
||||||
display: block;
|
|
||||||
width: rem;
|
|
||||||
height: 1.2rem;
|
|
||||||
fill: currentColor;
|
|
||||||
margin-top: -8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.md-header-nav__button.md-logo {
|
.md-header-nav__button.md-logo {
|
||||||
margin: .2rem;
|
margin: .2rem;
|
||||||
|
@ -197,4 +190,4 @@ color: #333333;
|
||||||
.tabbed-set input:nth-child(n+1):checked + label + .tabbed-content {
|
.tabbed-set input:nth-child(n+1):checked + label + .tabbed-content {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
**?
|
**/
|
||||||
|
|
|
@ -8,6 +8,9 @@ To do so, you can use the following flags <code>--ssl</code>, <code>--sslcert</c
|
||||||
|
|
||||||
<pre><code>$ docker run -d -p 443:9000 -p 8000:8000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v ~/local-certs:/certs -v portainer_data:/data portainer/portainer-ce --ssl --sslcert /certs/portainer.crt --sslkey /certs/portainer.key</code></pre>
|
<pre><code>$ docker run -d -p 443:9000 -p 8000:8000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v ~/local-certs:/certs -v portainer_data:/data portainer/portainer-ce --ssl --sslcert /certs/portainer.crt --sslkey /certs/portainer.key</code></pre>
|
||||||
|
|
||||||
|
!!! Note
|
||||||
|
Portainer expects the certificate in PEM format.
|
||||||
|
|
||||||
Now, you can navigate to https://$ip-docker-host
|
Now, you can navigate to https://$ip-docker-host
|
||||||
|
|
||||||
## :fontawesome-solid-lock: Securing Portainer using SSL with Docker Swarm
|
## :fontawesome-solid-lock: Securing Portainer using SSL with Docker Swarm
|
||||||
|
|
Loading…
Reference in New Issue