0

I am new to Azure Container Instances, I created an azure container with public docker image of Solace form Docker Hub(https://hub.docker.com/r/solace/solace-pubsub-standard).

Process completed without error, but instance is automatically stopping after few seconds. I started manually but it automatically got stopped again. There is no error in logs for container or in instance activity.

Any input will help...

Pranav Singh
  • 17,079
  • 30
  • 77
  • 104

1 Answers1

0

For your issue, you can figure out that the logs of the container already shows the error:

enter image description here

And when you run the image in your local Docker server without the parameter --shm-size 2g, then it also terminates with the same error. So I think it's the reason that the container instance terminated. And as I know, the ACI does not support the --shm-size right now.

Charles Xu
  • 29,862
  • 2
  • 22
  • 39