Nvidia-docker: Getting KEYEXPIRED error while running apt update

Created on 1 Oct 2018  路  2Comments  路  Source: NVIDIA/nvidia-docker

_The template below is mostly useful for bug reports and support questions. Feel free to remove anything which doesn't apply to you and add more information where it makes sense._

_Also, before reporting a new issue, please make sure that:_


1. Issue or feature description

I receive a KEYEXPIRED error on apt update. Running Ubuntu 16.04.1

Relevant error messages:

Err:15 https://nvidia.github.io/libnvidia-container/ubuntu16.04/amd64 InRelease
The following signatures were invalid: KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745
Err:16 https://nvidia.github.io/nvidia-container-runtime/ubuntu16.04/amd64 InRelease
The following signatures were invalid: KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745
Err:18 https://nvidia.github.io/nvidia-docker/ubuntu16.04/amd64 InRelease
The following signatures were invalid: KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745 KEYEXPIRED 1538166745

2. Steps to reproduce the issue

sudo apt update

3. Information to attach (optional if deemed irrelevant)

  • [ ] Kernel version from uname -a
  • [ ] Any relevant kernel output lines from dmesg
  • [ ] Driver information from nvidia-smi -a
  • [ ] Docker version from docker version
  • [ ] NVIDIA packages version from dpkg -l '*nvidia*' _or_ rpm -qa '*nvidia*'
  • [ ] NVIDIA container library version from nvidia-container-cli -V
  • [ ] NVIDIA container library logs (see troubleshooting)
  • [ ] Docker command, image and tag used

Most helpful comment

That's normal, we extended the duration of our subkey. You have to fetch it again:

curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | \
  sudo apt-key add -

All 2 comments

That's normal, we extended the duration of our subkey. You have to fetch it again:

curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | \
  sudo apt-key add -

Thanks, that worked!

Was this page helpful?
0 / 5 - 0 ratings