Closed3
E: The repository 'http://deb.debian.org/debian buster InRelease' is not signed.
ある日から docker compose build
ができなくなったので原因を掘っていったら、debian自体の apt update
ができなくなっていた。
% docker run --rm -it ruby:3.2.2-buster apt update
Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
Get:2 http://deb.debian.org/debian-security buster/updates InRelease [34.8 kB]
Get:3 http://deb.debian.org/debian buster-updates InRelease [56.6 kB]
Err:1 http://deb.debian.org/debian buster InRelease
At least one invalid signature was encountered.
Err:2 http://deb.debian.org/debian-security buster/updates InRelease
At least one invalid signature was encountered.
Err:3 http://deb.debian.org/debian buster-updates InRelease
At least one invalid signature was encountered.
Reading package lists... Done
W: GPG error: http://deb.debian.org/debian buster InRelease: At least one invalid signature was encountered.
E: The repository 'http://deb.debian.org/debian buster InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: http://deb.debian.org/debian-security buster/updates InRelease: At least one invalid signature was encountered.
E: The repository 'http://deb.debian.org/debian-security buster/updates InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: GPG error: http://deb.debian.org/debian buster-updates InRelease: At least one invalid signature was encountered.
E: The repository 'http://deb.debian.org/debian buster-updates InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
image自体は最新っぽい。
$ docker pull ruby:3.2.2-buster
3.2.2-buster: Pulling from library/ruby
Digest: sha256:8401591f18ed4cb38e2ce73fe9f655e17c3386306851e2569f0102a05dc5aab2
Status: Image is up to date for ruby:3.2.2-buster
docker.io/library/ruby:3.2.2-buster
GPGのキーも問題なさそう。
原因が分からなかったのでとりあえず諦めて、他のプロジェクトを立ち上げて作業をしていたらredisにてエラーが出て判明した。
ERROR -- : heartbeat: MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
ディスクスペースが無いと。。。。。
以下の方法でごみ掃除をして解決。
このスクラップは2023/11/24にクローズされました