Docker-Notes

Docker Notes Docker container is a running instance of Docker image. Commands $docker images For example, it shows available images in the local repo docker search <SEARCH_STRING> For example docker search ubuntu docker pull <IMAGE> For example docker pull ubuntu:latest docker run -i -t ubuntu To run the image, -i for interactive, -t to attach … Continue reading Docker-Notes