Problem Statement
Which command syntax mounts a host directory /data into the container’s path /app/data?
Explanation
Using `-v host_path:container_path` is a standard way to mount a host directory (bind mount) into a container path. This ensures data persists beyond the container lifecycle when needed.
Code Solution
SolutionRead Only
docker run -v /data:/app/data myapp
