Docker,Infrastructure

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 commands

Check version.

$ docker version

Check more details.

$ docker info

Docker command format.

$ docker ...

Docker,Infrastructure

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-server

2-2. Install curl.

$ sudo apt install curl

2-3. Install git.

$ sudo apt install git

2-4 Cha ...