Where is container 25.02 for jetpack6.2? (original) (raw)
April 30, 2025, 12:01am 1
I am currently using the above system on jetpack6.2. According to the site below, there is a container 25.02 available, but I can’t find where it is, so I can’t create a dockerfile. I don’t know docker very well, so I might be making a mistake, but I want to create a base image using 25.02, how can I do that?
AastaLLL April 30, 2025, 3:59am 4
Hi,
As @whitesscott mentioned, the container is located in NGC and can be linked with the URL above.
Thanks.
I wasn’t sure how to use it. I did it like below and the image is down. Thanks.
ubuntu@tegra-ubuntu:~/User/docker_images/img_0$ sudo docker run --gpus all -it --rm nvcr.io/nvidia/tensorflow:25.02-tf2-py3
Unable to find image ‘nvcr.io/nvidia/tensorflow:25.02-tf2-py3’ locally
25.02-tf2-py3: Sa Pulling from nvidia/tensorflow
5b17151e9710: Pull complete
cde9df4d3804: Pull complete
4f4fb700ef54: Pull complete
a16c9a87d68f: Pull complete
788ea56ec7bd: Pull complete
34c2da535939: Pull complete
ac737e699a5c: Pull complete
…
This command might work better to run docker.
docker run -it --rm --net=host --runtime nvidia --privileged --ipc=host -v $HOME:/workspace nvcr.io/nvidia/tensorflow:25.02-tf2-py3 bash
Then you’ll be dumped into the docker container and can run python and tensorflow. If you want them I’m sure there are tutorials on developer.nvidia.com but I don’t know them. However here’s some.
If you’d like to run docker without sudo do the following:
sudo groupadd docker
sudo usermod -aG docker $USER
Log out and log back in so that your group membership is re-evaluated.