ubuntu安装docker
sudo apt-get install docker.io
拉取hello-world镜像验证docker是否安装成功。
sudo docker pull hello-world
运行hello-world
sudo docker run hello-world
PS:不使用sudo 即可执行docker命令
sudo groupadd docker
sudo gpasswd -a username docker
重启系统即可生效
安装docker-compose
使用 Docker Compose 可以轻松、高效的管理容器,它是一个用于定义和运行多容器 Docker 的应用程序工具