When you create a container with a tmpfs mount, the container can create files outside the container’s writable layer.
As opposed to volumes and bind mounts, a tmpfs mount is temporary, and only persisted in the host memory. When the container stops, the tmpfs mount is removed, and files written there won’t be persisted.
docker run -d -it --name tmptest --mounttype=tmpfs,destination=/app nginx:latest
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)