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_networks
Docker container networks.
Column | Type | Description |
---|---|---|
endpoint_id | text | Endpoint ID |
gateway | text | Gateway |
id | text | Container ID |
ip_address | text | IP address |
ip_prefix_len | integer | IP subnet prefix length |
ipv6_address | text | IPv6 address |
ipv6_gateway | text | IPv6 gateway |
ipv6_prefix_len | integer | IPv6 subnet prefix length |
mac_address | text | MAC address |
name | text | Network name |
network_id | text | Network ID |
List the IP address of Docker containers.
SELECT dn.ip_address, dc.name FROM docker_container_networks dn JOIN docker_containers dc ON dn.id=dc.id;