mirror of https://github.com/docker/compose.git
Make sure version line is at the top of the file
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
47b22e90f9
commit
f86fe11825
|
@ -78,8 +78,11 @@ def migrate(content):
|
|||
if volume_from.split(':', 1)[0] not in service_names:
|
||||
service['volumes_from'][idx] = 'container:%s' % volume_from
|
||||
|
||||
data['services'] = {name: data.pop(name) for name in data.keys()}
|
||||
services = {name: data.pop(name) for name in data.keys()}
|
||||
|
||||
data['version'] = 2
|
||||
data['services'] = services
|
||||
|
||||
return data
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue