One of the biggest challenges in web development is to have a stable development environment and assuring that the website works when deploying on different servers. Docker helps us build isolated containers that give a this stable and predictable environment and saves many headaches when debugging our website. Thanks to the preconfigured images available on […]
Tag: Docker
Docker volumes vs bind mounts
By default a docker container won’t store any persistent data, so anything that we write to its writable layer won’t be available once we stop it.When running Docker containers we might be interested in persisting certain data. This can be achieved by using either volumes or bind mounts. Below I’m describing main differences between the […]