摘要:
After build sucess, we want to push the build docker image to dockerhub. For that we need to login dockerhub provide username and password. Of course, 阅读全文
摘要:
CI/CD enables us to have a streamlined process for how our code transforms from being written to being deployed to production. Continuous Integration 阅读全文
摘要:
The AWS Command Line Interface (AWS CLI) is a command-line tool that allows you to interact with AWS services using commands in your terminal/command 阅读全文
摘要:
Base container can make Docker build much faster. Our original Dockerfile contained a lot of code to install NodeJS that takes a long time to run. Ins 阅读全文
摘要:
1. Pull the docker image docker pull isjustintime/debug-me:latest 2. Run the image: docker run -d isjustintime/debug-me 3. Check docker is running: do 阅读全文
摘要:
When dealing with `fs` library, the common problem you will meet is the path to file. Different envs may have different way to handle the path. The be 阅读全文
摘要:
Using the Strangler Pattern First write the Dependency Graph. For example: It would be a good idea start `C` module or `A`. It would be a bad idea sta 阅读全文
摘要:
import fs from 'fs'; import Jimp = require('jimp'); // filterImageFromURL // helper function to download, filter, and save the filtered image locally 阅读全文
摘要:
Monolith Microservices Self-contained application that is deployed as one unit Independently-deployed applications that communicate through networks P 阅读全文
摘要:
Monoliths Are Not Bad! Microservices designs are another architectural pattern and are not intended to replace monolith applications. We should not bl 阅读全文