How To Inspect Changes To A Docker Container'S Filesystem
When you make changes to a Docker container’s filesystem, it’s important to inspect the changes in order to determine if they have any impact on the container’s behavior. This article will walk you through how to do this. Docker containers inherit their image’s filesystem upon initial creation. The container’s filesystem can diverge from the image’s content after creation if changes are made to the container’s writable layer. The ability to inspect changes in the filesystem can help you debug issues and investigate missing data....