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.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
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;