masato-ka / airc-rl-agent

AI RC Car Agent that using deep reinforcement learning on Jetson Nano
MIT License
86 stars 24 forks source link

Need to get help to making docker container of learning_racer #45

Open gwiheo opened 2 years ago

gwiheo commented 2 years ago

@masato-ka Thank you Masato-ka for your new setup of learning_racer 1.6.1 version. After installing it I got a nice installation of learning_racer although it still shows a message : nvbuf _utils: Could not get EGL display connection. But every other things are working fine. I tried to make a new docker image for keeping my installation for later use. I made a new docker with docker commit command. After that I tried to make it container with a comand as : sudo docker run -it --name /bin/bash. I found that new container was made by checking it with "sudo docker ps -a" and "sudo docker ps". After I got into the container with a command : sudo docker exec /bin/bash, I checked folder directory with "ls" command. But, I cannot find the airc-rl-agent folder in the container. Therefore I checked the content of docker images after uploading my docker image to docker hub (hub.docker.com). I found that all the airc-rl-agent folder and files are in the docker images. I wonder what I made wrong in making a new container from the new docker images. I tried run the script in the enable.sh : docker run .... which described at the enable.sh. But the result was same. I cannot make a proper container for it. Could you give your advice and comment for this problem. Thanks.

masato-ka commented 2 years ago

learning_racer container mount /home/jetbot as /workspace. Therefor, the container is not include datafolder. Other container that provide from NVIDIA is same state. Please see enable.sh.

gwiheo commented 2 years ago

@masato-ka Thank you for the above comment.