mehdi mohammadi
mehdi mohammadi

Reputation: 361

WebSphere Traditional docker container not starting because of JVM Setting

I did a mistake in JVM arguments setting in WebSphere after restarting docker container is not starting . I know because of my modification but How can I solve that ? I need to access docker container and without starting (I think) I could not do that .

Upvotes: 0

Views: 298

Answers (1)

Jorge Chavez
Jorge Chavez

Reputation: 125

You can do:

docker run -d your-image tail -f /dev/null

It will keep your docker running.

Then you can do:

docker exec -it your-container-id bash

Hope this helps

Upvotes: 1

Related Questions