2016-02-01 19:58:08 |
Jonas G. Drange |
description |
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu Xenial Xerus (development branch)"
Just upgraded to xenial, everything in my sources.list.d has been disabled. Upgrade went well, but docker-compose does not do what it is supposed to do.
Reproduce:
docker-compose.yml
testdb:
image: postgres:9.4
$ sudo docker-compose up
What happens:
ERROR: client and server don't have same version (client : 1.19, server: 1.18)
What should have happened:
I expected this to work out of the box. |
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu Xenial Xerus (development branch)"
Just upgraded to xenial, everything in my sources.list.d has been disabled. Upgrade went well, but docker-compose does not do what it is supposed to do.
From docker-compose web site: “Note that Compose 1.6.0 requires Docker 1.9.1 or later.” and we are currently shipping docker 1.6.2 (ref bug 1536583).
Reproduce:
docker-compose.yml
testdb:
image: postgres:9.4
$ sudo docker-compose up
What happens:
ERROR: client and server don't have same version (client : 1.19, server: 1.18)
What should have happened:
I expected this to work out of the box. |
|