DockerContainer’s dependency check and health check A software becomes failing state. When our software falls into a failing state we want to restart the software in order ...2020.12.02Docker
DockerRun multi Docker containers with compose file In the previous post, I explained how to communicate with other Docker containers. If you haven't read the post yet, go ...2020.11.25Docker
DockerCommunication with other Docker containers When we want decide to use Docker container we probably have multiple Docker containers. In that case each container has...2020.11.18Docker
DockerBind host directory to Docker container for dev-env Docker offers following 3 ways to store persistent data. bind mount: Host machine's folder/file is mounted into a contai...2020.11.11Docker
DockerDocker volume In the last post, I wrote how to run Node.js application in a docker container but it was Hello, World. application. So ...2020.11.04Docker
DockerStart Docker from scratch Docker is widely used but I haven't used it in my career. However, it is one of very useful softwares so it's time to le...2020.10.28Docker
JavaScript/TypeScriptDifference between for, while, forEach, for-in and for-of A lot of languages support several ways for loop logic. Typescript supports following ways for example. whileforfor in f...2020.10.21JavaScript/TypeScript
JavaScript/TypeScriptasync/await with Promise in TypeScript Using promise makes the code much faster. This post explains the basic and advanced usage.2020.10.14JavaScript/TypeScript
JavaScript/TypeScriptHow to write unit tests for a singleton class Once a static field value changes in unit tests, the change applies to other tests because it's static. It's important to split it into two classes. One class has the main logic and the other stores the class to provide it as singleton.2020.10.07JavaScript/TypeScript
Other techsStart Powershell with specified execution policy without changing default How to start powershell I often starts powershell.exe from an explorer instead of command prompt because it looks better...2020.09.30Other techs