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:
Aanand Prasad 2016-01-26 15:54:18 +00:00
parent 47b22e90f9
commit f86fe11825
1 changed files with 4 additions and 1 deletions

View File

@ -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