1.confirm which images that we have
docker ls
2.install the specific image to container
docker container run -d --name "containerName" -p 8080:8080 "ImageName"
3.when you wanna close container
docker stop "containerName"
4.restart
docker container start "containerName"