Docker run nitialization error

I’m using a gpu “NVDIA GeForce RTX 2080 SUPER”

I am setting up CUDA for Ubuntu on WSL2 by referring to the below page.
CUDA on WSL :: CUDA Toolkit Documentation

“Docker run --gpus all nvcr.io/nvidia/k8s/cuda-sample:nbody nbody -gpu -benchma” rk described in “Simple CUDA Containers” of “Running CUDA Containers” is executed by sudo.
The following error is output after execution

docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused “process_linux.go:449: container init caused "process_linux.go:432: running prestart hook 0 caused \" error running hook: exit status 1, stdout:, stderr: nvidia-container-cli: initialization error: nvml error: driver not loaded\\n\""”: unknown.
ERRO[0000] error waiting for container: context canceled

I ran the following command to see if docker is working, but it’s working fine.
“sudo docker run hello-world”

I’m wondering if I’m not properly recognizing the driver I installed from Windows because it’s “driver not loaded”, but I’m not sure how to do it.
I would like someone to help.

Replace Ubuntu and repeat the same procedure about 3 times,
CUDA on WSL :: CUDA Toolkit Documentation
It is described in
The following commands are now working and working.
(A) “docker run --gpus all nvcr.io/nvidia/k8s/cuda-sample:nbody nbody -gpu -benchmark”
(B) “docker run --gpus all nvcr.io/nvidia/k8s/cuda-sample:nbody nbody -gpu -benchmark”

However, when Windows is restarted, the following log is output.
Both (A) and (B) no longer work.

What could be the cause?

root@DESKTOP-O1U701C:/home/takayuki# docker run --gpus all nvcr.io/nvidia/k8s/cuda-sample:nbody nbody -gpu -benchmark
docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "process_linux.go:449: container init caused \"process_linux.go:432: running prestart hook 0 caused \\\"error running hook: exit status 1, stdout: , stderr: nvidia-container-cli: initialization error: driver error: failed to process request\\\\n\\\"\"": unknown.
ERRO[0000] error waiting for container: context canceled
root@DESKTOP-O1U701C:/home/takayuki#