hackershake
hackershake

Reputation: 78

IBM Bluemix Container shuts down as soon as it is created

I am trying to create a container on IBM Bluemix. I followed their guides and did these:

  1. Created an image on localhost
  2. Pushed the image to Bluemix
  3. Created a volume on Bluemix
  4. Created a container on Bluemix with the volume mounted on it.

I used this kind of command for creating a container:

 bx ic run -m 512 --name container1--volume ibmodmdcvol:/opt/ibmsoftware registry.eu-gb.bluemix.net/bluemix_images/ibmodmdc:v1 v1 bash -c "tail -f /dev/null"

The container gets created but it is in a shutdown state as soon as it is created. I am not able to upload anything on the container.

Upvotes: 0

Views: 72

Answers (1)

Abhishek Ghosh
Abhishek Ghosh

Reputation: 1165

Please run bx ic inspect or bx ic logs. Without knowing slight more details, it is not possible to provide you any clue to correctly proceed to fix.

Please note that, same question asked on dWanswers and admin Bill Wentworth on dW noted this URL of StackOverflow for cross reference.

Upvotes: 1

Related Questions