Docker: Writing The Basic Dockerfile
Docker is an environment to run small isolated virtual machines called containers. Container are stateless, which means they don’t store the state of the application or data created during the runtime. Any changes made to filesystem within a container are temporary and will be lost forever if you stop, restart or remove container! Stateless design […]