Cài docker trên CentOS 7
Cần cài CentOS 7 không phải là 6 vì bản 6 không hỗ trợ docker-ce phiên bản mới sẽ dẫn đến các file docker compose version mới không chạy được
[sourcecode language=”powershell”]
yum check-update
curl -fsSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker
install -y epel-release
yum install -y python-pip
pip install docker-compose
[/sourcecode]
Install Docker-machine
[sourcecode language=”powershell”]</pre>
curl -L https://github.com/docker/machine/releases/download/v0.13.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && \
chmod +x /tmp/docker-machine && \
cp /tmp/docker-machine /usr/local/bin/docker-machine
[/sourcecode]