Last active
July 22, 2025 08:23
-
-
Save Aurora12/c6a3ea19734fb9364423d4d0135e3f5f to your computer and use it in GitHub Desktop.
Trying to pull a Docker image results in a signature error.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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