You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Volumes should not be exposed in a dockerfile as they cannot be removed downstream.
Using the volume directive in a dockerfile isn't good practice as they cannot be changed by a user of the image.
Volumes should not be exposed in a dockerfile as they cannot be removed downstream.
Using the volume directive in a dockerfile isn't good practice as they cannot be changed by a user of the image.
See: https://docs.docker.com/engine/reference/builder/#notes-about-specifying-volumes
Changing the volume from within the Dockerfile: If any build steps change the data within the volume after it has been declared, those changes will be discarded.
The text was updated successfully, but these errors were encountered: