Skip to content

Instantly share code, notes, and snippets.

@Saluki
Created January 28, 2019 10:46
Show Gist options
  • Save Saluki/45d2ebce6bbaad3601fdc52ddbab788a to your computer and use it in GitHub Desktop.
Save Saluki/45d2ebce6bbaad3601fdc52ddbab788a to your computer and use it in GitHub Desktop.
MEDIUM - Container OSQuery - Unused images
-- Retrieve images not used in active containers
SELECT id, tags
FROM docker_images
WHERE id NOT IN (
SELECT image_id FROM docker_containers
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment