Ansgar Schmidt
Ansgar Schmidt

Reputation: 169

Is there a way to start a docker container in bluemix and see the command line output?

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

Answers (2)

Jan
Jan

Reputation: 46

Depending on the tool you use:

ice logs <container id>

cf ic logs <container id>

docker logs <container id>

Upvotes: 0

Alex da Silva
Alex da Silva

Reputation: 4590

You can see the console output of IBM Containers with the following command line:

ice logs <container id>

Upvotes: 7

Related Questions