Docker study notes

Container related commands Run - start a container docker run [OPTIONS] IMAGE [COMMAND] [ARG...] The default tag of the image is latest. Docker would search for the image in the host, otherwise would download from Docker hub if there's no local copy. Container only lives until the process in it lives. For example, if we … Continue reading Docker study notes