Browse Source

Make sure version line is at the top of the file

Signed-off-by: Aanand Prasad <[email protected]>
Aanand Prasad 9 years ago
parent
commit
1772909fe2
1 changed files with 4 additions and 1 deletions
  1. 4 1
      contrib/migration/migrate-compose-file-v1-to-v2.py

+ 4 - 1
contrib/migration/migrate-compose-file-v1-to-v2.py

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