DevOps

    [Docker 배우기] Section 2. Docker Commands

    Docker for the Absolute Beginner - Hands On - DevOps | Udemy docker run: runs the container downloads the image if it is not locally stored appending a command behind allows execution of the command after running the container running the container with -d tag allows it to run in the background and not on the console docker ps: lists current running containers by adding -a, it also shows stopped..

    [Docker 배우기] Section 1. Introduction

    [Docker 배우기] Section 1. Introduction

    Docker for the Absolute Beginner - Hands On - DevOps | Udemy Docker Overview Docker allows to run each service with its dependencies in separate containers. Containers: a completely independent environment that runs on OS kernels ex) Linux kernel: allows to run CentOS, Fedora, etc Cannot run Windows container on Linux kernel VM vs Containers VM Container Uses Hypervisor Uses container engine Mul..