mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
table_name("docker_volumes")
|
|
description("Docker volumes information.")
|
|
schema([
|
|
Column("name", TEXT, "Volume name", index=True),
|
|
Column("driver", TEXT, "Volume driver"),
|
|
Column("mount_point", TEXT, "Mount point"),
|
|
Column("type", TEXT, "Volume type")
|
|
])
|
|
implementation("applications/docker@genVolumes")
|
|
examples([
|
|
"select * from docker_volumes",
|
|
"select * from docker_volumes where name = 'btrfs'"
|
|
]) |