Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
docker_container_mounts
Docker container mounts.
Column | Type | Description |
---|---|---|
destination | text | Destination path inside container |
driver | text | Driver providing the mount |
id | text | Container ID |
mode | text | Mount options (rw, ro) |
name | text | Optional mount name |
propagation | text | Mount propagation |
rw | integer | 1 if read/write. 0 otherwise |
source | text | Source path on host |
type | text | Type of mount (bind, volume) |
List the source and destination of Docker bind and volume mounts.
SELECT dm.source, dm.destination, dm.mode, dc.name FROM docker_container_mounts dm JOIN docker_containers dc ON dm.id = dc.id;