我尝试使用docker-compose build
构建docker,但遇到类似client and server don't have same version (client : 1.18, server: 1.17)
的问题。
我使用
找到了解决方案curl -L https://github.com/docker/compose/releases/download/1.2.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose``
chmod +x /usr/local/bin/docker-compose`.
再次尝试构建时,我得到了Unsupported config option for services service: 'nginx'
docker-compose.yml使用version: '2'
当前版本的docker
Client version: 1.6.2
Client API version: 1.18
Go version (client): go1.2.1
Git commit (client): 7c8fca2
OS/Arch (client): linux/amd64
Server version: 1.6.2
Server API version: 1.18
坦率地说,我对此非常陌生,甚至不明白该怎么做。
请帮助我。