Skip to content

Instantly share code, notes, and snippets.

@Aurora12
Last active July 22, 2025 08:23
Show Gist options
  • Select an option

  • Save Aurora12/c6a3ea19734fb9364423d4d0135e3f5f to your computer and use it in GitHub Desktop.

Select an option

Save Aurora12/c6a3ea19734fb9364423d4d0135e3f5f to your computer and use it in GitHub Desktop.
Trying to pull a Docker image results in a signature error.
# Errors similar to this:
# Err:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
# At least one invalid signature was encountered.
# Probably mean Docker ran out of space (and the error is completely unhelpful).
docker builder prune -f # This may be enough
# If that didn't help
docker image prune # add -f or --force to not prompt for confirmation
docker container prune # add -f or --force to not prompt for confirmatio
# Optionally (removes the data!)
docker volume prune
# Check the Docker system disk usage
docker system df
# A more radical approach:
docker system prune
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment