安装docker
yum -y install docker-io
启动
service docker start
问题
1ERROR: The Docker Engine version is less than the minimum required by Compose. Your current project requires a Docker Engine of version 1.10.0 or greater. 2 3更新docker版本 4curl -sSL -O https://get.docker.com/builds/Linux/x86_64/docker-1.10.0 && chmod +x docker-1.10.0 && mv docker-1.10.0 /usr/local/bin/docker 5cp /usr/local/bin/docker /usr/bin/docker 6service docker start