Reputation: 361
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
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