Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker exiting with code 139; what does this mean?

I am currently working with Docker Tensorflow. The start up works, data preperation, building the model etc, but when the first epoch starts the container exits with code 139. In the Docker documentation I can't find anywhere what this exit code means! Can someone explain it to me so I can find out where the problem is?

like image 807
Anna Jeanine Avatar asked Sep 19 '25 21:09

Anna Jeanine


1 Answers

This is typically an indication that your application received a SIGSEGV. Docker is only passing through the error codes, so you need to research your application to understand why it failed.

like image 150
BMitch Avatar answered Sep 21 '25 13:09

BMitch