#29 - docker-compose: updated RUNTIMES_MANIFEST (#32)

diff --git a/docker-compose/docker-whisk-controller.env b/docker-compose/docker-whisk-controller.env
index 816128b..5941f7c 100644
--- a/docker-compose/docker-whisk-controller.env
+++ b/docker-compose/docker-whisk-controller.env
@@ -30,4 +30,4 @@
 LOADBALANCER_ACTIVATIONCOUNTBEFORENEXTINVOKER=10
 
 WHISK_SYSTEM_KEY=whisk.system
-RUNTIMES_MANIFEST={"python": [{"kind": "python"}], "swift": [{"deprecated": true, "kind": "swift"}, {"default": true, "kind": "swift:3"}], "java": [{"requireMain": true, "kind": "java", "attached": {"attachmentType": "application/java-archive", "attachmentName": "jarfile"}, "sentinelledLogs": false}], "nodejs": [{"kind": "nodejs"}, {"default": true, "kind": "nodejs:6"}]}
+RUNTIMES_MANIFEST={"runtimes":{"nodejs":[{"kind":"nodejs","image":{"name":"nodejsaction"},"deprecated":true},{"kind":"nodejs:6","default":true,"image":{"name":"nodejs6action"}}],"python":[{"kind":"python","image":{"name":"python2action"}},{"kind":"python:2","default":true,"image":{"name":"python2action"}},{"kind":"python:3","image":{"name":"python3action"}}],"swift":[{"kind":"swift","image":{"name":"swiftaction"},"deprecated":true},{"kind":"swift:3","default":true,"image":{"name":"swift3action"}}],"java":[{"kind":"java","attached":{"attachmentName":"jarfile","attachmentType":"application/java-archive"},"sentinelledLogs":false,"requireMain":true,"image":{"name":"java8action"},"default":true}]}}