1 min read
Docker is a wonderful tool for many things. A few of them are;
- As a version control system for your entire app’s operating system by storing each configuration as a central build.
- To distribute/collaborate our app’s operating system with our team.
- To run your code on your laptop in the same environment as you have on your server. We are going to explore Docker images. Why we should use them, and how to go about it.
Read More: Working Effectively with Docker Images
In a previous article, we talked about Docker images but we could only use a small section to talk about Docker containers. Now, let’s go deeper. D...
8 min read
Docker volumes are very useful when we need to persist data in Docker containers or share data between containers. Docker volumes are important becau...
4 min read
Comments