-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
The PSA car controller is installed in a docker container. You can't cd to it directly, but instead use docker, first find out the contaner ID by typing docker ps this gives you the list of all containers. After that you can start a command shell in the container by typing docker exec -it <container_id> bash this gives you access inside the container. But I don't think you need to enter the car type in any way, unless it's not listed in the car models database file? |
Beta Was this translation helpful? Give feedback.
-
Thanks for the tip, I'll try it. |
Beta Was this translation helpful? Give feedback.
-
Hi, i have an similar problem. Thanks a lot |
Beta Was this translation helpful? Give feedback.
-
Hi mitasa, thanks a lot |
Beta Was this translation helpful? Give feedback.
The PSA car controller is installed in a docker container. You can't cd to it directly, but instead use docker, first find out the contaner ID by typing
docker ps
this gives you the list of all containers. After that you can start a command shell in the container by typing
docker exec -it <container_id> bash
this gives you access inside the container. But I don't think you need to enter the car type in any way, unless it's not listed in the car models database file?