我希望将 Docker compose 与 v2 docker-compose.yml 语法一起使用。
当我按照文档(https://store.docker.com/editions/community/docker-ce-server-ubuntu?tab=description)安装旧 docker 和 docker-compose 版本时:
$ 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 install docker docker-compose
.../...
$ dpkg -l |grep docker
ii docker 1.5-1 amd64 System tray for KDE3/GNOME2 docklet applications
rc docker-ce 17.03.1~ce-0~ubuntu-yakkety amd64 Docker: the open-source application container engine
ii docker-compose 1.5.2-1 all Punctual, lightweight development environments using Docker
ii docker.io 1.12.6-0ubuntu1~16.10.1 amd64 Linux container runtime
ii python-docker 1.8.0-0ubuntu1 all Python wrapper to access docker.io's control socket
ii python-dockerpty 0.4.1-1 all Pseudo-tty handler for docker Python client (Python 2.x)
为了使用版本 2 docker compose 文件格式,我需要更新的版本。
Docker Compose 的文档页面:https ://github.com/docker/docker.github.io/blob/master/compose/compose-file/compose-versioning.md
Compose 1.6.0+ 支持版本 2 文件,并且需要 1.10.0+ 版本的 Docker 引擎。
如何获取最新版本的 docker engine 和 docker compose ?我今天用谷歌搜索了很多次,没有任何“简单”的解决方案。
我的系统:Ubuntu 16.10
谢谢你的帮助,大卫