Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Fleet Gitops
See every change, under any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Fleet Gitops
See every change, under any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
Apple
Linux
Windows
ChromeOS
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;