Docker

Command to inspect the content of an image created

docker run -it --name temp_container imageName /bin/sh

where "temp_container" is the name of temporary container

docker images

to list images

docker build -t server .

to build images where "server' is the name of image

Last updated