docker dock code example
Example 1: 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 2: docker
# current containers
docker ps
# create container
docker create
# create and start the container
docker run
# to run commnads in container for once
dokcer exec
# create a docker volume
docker volume
# create a docker network
docker network
# remove container
# list the images
docker rm
# remove image
docker images
# build a new image from dockerfile
docker rmi
# push your image to docker repo
docker build
# download an image from docker repo
docker push
# create an image from container
docker pull
# commit commnad
docker commit