Reputation: 169
I am having problems to run my docker container on bluemix. The container runs without any problem in my local machine but crashes in bluemix. Is there a way to start a container in bluemix via the "ice" command and see the console output in the same way as I can see it without the "-d" command in my local docker installation?
Upvotes: 3
Views: 117
Reputation: 46
Depending on the tool you use:
ice logs <container id>
cf ic logs <container id>
docker logs <container id>
Upvotes: 0
Reputation: 4590
You can see the console output of IBM Containers with the following command line:
ice logs <container id>
Upvotes: 7