Wayan Jimmy's Brain

Install Rancher on Single Node

links
Install Rancher on Single Node
related
Docker

Install Docker

Make sure you have docker installed by execute the command below

curl https://releases.rancher.com/install-docker/19.03.sh | sh

Read more

Install on Single Node

We need to run the rancher web admin on the port other than 80, because port 80 will be used by nginx-ingress, read here about this issue.

docker run -d --restart=unless-stopped \
  -p 8080:80 -p 8443:443 \
  --privileged \
  rancher/rancher:latest