摘要:
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 阅读全文
摘要:
Elastic Beanstalk is a powerful Development Operations tool (Dev Ops) to deploy your code to AWS services and infrastructure with minimal effort. EB C 阅读全文
摘要:
1. Shell - Linux/Mac Users For Unix/Linux/Mac operating systems, a shell is a command-line program that accepts users' commands and executes those com 阅读全文
摘要:
When Launch a new EC2 instance, in the final step, you can create a new private key pair and download it as pem file. For example, I have one call `my 阅读全文