Docker – Create Containers Quick Start Guide
Basically, you can see the all commands with “docker container –help“, but at first, I believe you need the following commands for your quick start!
Basic commandsCheck version.
$ docker versionCheck more details.
$ docker infoDocker command format.
$ docker ...
Docker on Ubuntu 20.04LTS Quick Start Guide
Install Ubuntu to virtual box.
1-1. Download and Install Ubuntu.
Ubuntu-downloadInstall some applications and change OS settings.2-1. Install ssh.
$ sudo apt-get install openssh-server2-2. Install curl.
$ sudo apt install curl2-3. Install git.
$ sudo apt install git2-4 Cha ...