mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2024-12-17 19:44:31 +00:00
9 lines
136 B
MySQL
9 lines
136 B
MySQL
|
-- Return the list of mounts for Docker containers
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
docker_container_mounts;
|