Skip to content

Instantly share code, notes, and snippets.

@ai2ys
Created January 30, 2024 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ai2ys/3d2fda0b7aad63cb12cb41b6cc07fb13 to your computer and use it in GitHub Desktop.
Save ai2ys/3d2fda0b7aad63cb12cb41b6cc07fb13 to your computer and use it in GitHub Desktop.
List Docker volumes by creation data

List Docker volumes by creation data

Listing all docker volumes and their creation date without any additional tools required.

https://stackoverflow.com/a/77819947/11687201

  1. Getting the list of all docker volumes docker volume ls
  2. Passing that list to docker volume inspect
  3. Sorting by ascending date
docker volume ls --quiet | xargs docker volume inspect --format '{{ .CreatedAt }} {{ .Name }}' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment