How do Docker volumes, bind mounts, and tmpfs mounts differ?
tmpfs is the preferred option for durable backup data across reboots.
Volumes are Docker-managed persistent storage, bind mounts map a chosen host path, and tmpfs stores temporary data in memory.
All three keep data only in memory and lose it at container exit.
Docker fully manages the host location for all three options.