使用docker安裝實(shí)驗(yàn)
如果你想快速部署應(yīng)用程序并提高運(yùn)行效率,那么docker是個(gè)不錯(cuò)的選擇。
下面將演示如何在Linux操作系統(tǒng)上進(jìn)行docker安裝。
安裝步驟
第一步:
$ sudo apt-get update
第二步:
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
第三步:
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
第四步:
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
第五步:
$ sudo apt-get update
第六步:
$ sudo apt-get install docker-ce
結(jié)束語
恭喜你,現(xiàn)在你已經(jīng)成功安裝了docker,愉快地進(jìn)行實(shí)驗(yàn)吧。