CKS Notes - some notes on docker(podman)
1. Basic CMD
These basic cmd are same structure for both docker and podman.
# build image
$ docker build -t <NAME> -f /PATH/TO/Dockerfile <BUILD_CONTEXT>
$ docker image ls
# run docker container -d detached
$ docker run --name <NAME> -d <BASE_IMAGE...
notes-renovation.hashnode.dev5 min read