Merge pull request #2757 from TomKeur/master

Fixes install/update command #2756
This commit is contained in:
Catherine Luse
2020-10-07 08:37:29 -07:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -114,8 +114,8 @@ docker run -d --restart=unless-stopped \
-p 80:80 -p 443:443 \
-v /<CERT_DIRECTORY>/<FULL_CHAIN.pem>:/etc/rancher/ssl/cert.pem \
-v /<CERT_DIRECTORY>/<PRIVATE_KEY.pem>:/etc/rancher/ssl/key.pem \
rancher/rancher:latest \
--privileged \
rancher/rancher:latest \
--no-cacerts
```
@@ -142,8 +142,8 @@ As of Rancher v2.5, privileged access is [required.](#privileged-access-for-ranc
```
docker run -d --restart=unless-stopped \
-p 80:80 -p 443:443 \
rancher/rancher:latest \
--privileged \
rancher/rancher:latest \
--acme-domain <YOUR.DNS.NAME>
```
@@ -193,8 +193,8 @@ docker run -d --volumes-from rancher-data \
-p 80:80 -p 443:443 \
-v /<CERT_DIRECTORY>/<FULL_CHAIN.pem>:/etc/rancher/ssl/cert.pem \
-v /<CERT_DIRECTORY>/<PRIVATE_KEY.pem>:/etc/rancher/ssl/key.pem \
rancher/rancher:<RANCHER_VERSION_TAG> \
--privileged \
rancher/rancher:<RANCHER_VERSION_TAG> \
--no-cacerts
```