Docker 101 minimalist web dev docker
Write aheadAfter we knew some basic ideas and commands of Docker (No? see Docker 101 self-learning tutorial). We can build our own docker images and customized our dev kit. Today I will show you how to use Dockerfile build your own images, here I build a minimalist web dev image as example: Let’s codeDockerfileDockerfi...Docker 101 self-learning tutorial
What Docker does ?Docker is a software that help you implement the concept of Linux container which is pretty similar with virtual machine but more light-weight. Docker has a really great system or workflow that make build, ship and deploy your product really easy to do. You can find a lot of posts about docker on the ...