docker tutorial code example
Example 1: docker hello world
sudo docker run hello-world
Example 2: docker getting-started
#make sure docker is installed
docker run -dp 80:80 docker/getting-started
Example 3: docker
docker ps # current containers
docker run # create and start the container
docker create # create container
dokcer exec # to run commnads in container for once
docker volume # create a docker volume
docker network # create a docker network
docker rm # remove container
docker images # list the images
docker rmi # remove image
docker build # build a new image from dockerfile
docker push # push your image to docker repo
docker pull # download an image from docker repo
docker commit # create an image from container
Example 4: docker
cheat sheet
https://github.com/lifeeric/docker-cheat-sheet