$ curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh
$ curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh && sudo docker run -d --restart=unless-stopped -p 8080:8080 rancher/server
Thx
Does the curl command also install compose along with it?
Does the curl command also install compose along with it?
Compose is part of Docker now, but it's docker compose
as opposed to docker-compose
wget -O- get.docker.com | bash
Neat!