Assuming you start a docker with name
docker run -ti --name NAME DOCKER_IMAGEYou can check if the docker is still active
docker psYou can try to start the docker again if it is not active
docker start NAMEIf docker is active, you can connect to it via
docker exec -ti NAME bashYou can delete the docker name if it is no longer active
docker rm NAME