https://docs.docker.com/install/linux/docker-ce/ubuntu/
https://github.com/nvidia/nvidia-docker/wiki/Installation-(version-2.0)
https://docs.docker.com/install/linux/linux-postinstall/
https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
https://www.tensorflow.org/install/docker#download_a_tensorflow_docker_image
https://github.com/BVLC/caffe/tree/master/docker
nvidia-docker run -ti bvlc/caffe:gpu caffe --version
git clone https://github.com/ganlumomo/semantic-segmentation-dockers.git
cd semantic-segmentation-dockers
(might need to change FROM in Dockerfile according to the official docker image)
docker build --tag [customized_image_name] .
docker build --t [customized_image_name] -f Dockerfile .
(might need to change the last line in run_docker.bash to [image_name:tag])
bash run_docker.bash [container_name]
docker ps -a
docker start [container_name]
docker exec -it [container_name] /bin/bash