Bluemix容器closures问题

我正在尝试使用容器来部署基于Fortran的代码。 我已成功为Fortran环境创build了一个映像存储库。 但是,当我尝试使用容器时,容器不启动。 它保持build设,超时后永不停止。

我检查在线解决scheme,并build议由于尺寸问题发生这种情况。 不过,我甚至试图分配2 GB的内存(在我的情况下,最大允许),但我仍然无法获得容器的工作。

有人可以提出一个解决scheme吗?

The result for cf ic inspect [ { "BluemixApp": null, "BluemixServices": null, "Config": { "AttachStderr": false, "AttachStdin": false, "AttachStdout": false, "Cmd": [], "Dns": "", "Env": [ "logging_password=", "space_id=09b438a1-16ea-4e78-9229-6c8ff48522bd", "logstash_target=logmet.opvis.bluemix.net:9091", "metrics_target=logmet.opvis.bluemix.net:9095" ], "Hostname": "instance-01024a2b", "Image": "registry.ng.bluemix.net/legacycontainer/madeline-chat:latest", "ImageArchitecture": "amd64", "Labels": { "doc.url": "/docs/images/docker_image_ibmnode/ibmnode_starter.html" }, "Memory": 1024, "MemorySwap": "", "OpenStdin": true, "PortSpecs": "", "StdinOnce": false, "Tty": true, "User": "", "VCPU": 1, "VolumesFrom": "", "WorkingDir": "" }, "ContainerState": "Networking", "Created": "2016-11-15T05:15:14.000000000Z", "Group": {}, "HostConfig": { "Binds": [], "CapAdd": [], "CapDrop": [], "ContainerIDFile": "", "Links": [], "LogConfig": { "Config": {}, "Type": "json-file" }, "LxcConf": [], "PortBindings": { "80/tcp": [ { "HostPort": "80" } ] }, "Privileged": false, "PublishAllPorts": false }, "HostId": "", "Human_id": "fortcontainer", "Id": "5c3e7369-15f2-4c4c-a032-c7eaafe51057", "Image": "sha256:64b79347416c1909ecaf24276c2b37a093c017f03986bd928ce7af29f6e4362e", "Mounts": [], "Name": "fortcontainer", "NetworkSettings": { "Bridge": "", "Gateway": "", "IPAddress": "172.31.0.14", "IPPrefixLen": 0, "MacAddress": "fa:16:3e:c3:62:6d", "Networks": { "default": { "Aliases": null, "EndpointID": "5c3e7369-15f2-4c4c-a032-c7eaafe51057", "Gateway": "172.31.0.1", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "IPAMConfig": null, "IPAddress": "172.31.0.14", "IPPrefixLen": 16, "IPv6Gateway": "", "Links": null, "MacAddress": "fa:16:3e:c3:62:6d", "NetworkID": "01f0a8a5-782c-40c3-a9c9-6fb1f2b338ab" } }, "PortMapping": null, "Ports": { "80/tcp": [ { "HostIp": "169.44.117.254", "HostPort": "80" } ] }, "PublicIpAddress": "169.44.117.254" }, "Path": "date", "ResolvConfPath": "/etc/resolv.conf", "State": { "Error": "Unable to start container", "ExitCode": -1, "Fault": { "code": 500, "created": "2016-11-15T05:16:17Z", "message": "Exceeded maximum number of retries. Exceeded max scheduling attempts 3 for instance 5c3e7369-15f2-4c4c-a032-c7eaafe51057. Last exception: [u'Traceback (most recent call last):\\n', u' File \"/opt/bbc/openstack-12.1.90/nova/local/lib/python2.7/site-packages" }, "FinishedAt": "2016-11-15T05:16:17.000000000Z", "Ghost": "", "Pid": 1, "Running": false, "StartedAt": "2016-11-15T05:15:14.000000000Z", "Status": "Networking" }, "Volumes": {}, "VolumesRW": {} } ] 

您应该能够获得有关容器的其他信息,可以通过cf ic logs (如果容器正在运行,只是不活动)或cf ic inspect (如果容器没有达到足够的程度)那些显示有关可能发生什么的更多信息?