-
Maybe this is a docker - question, but I do not know anything about docker and I need it for my create3, so I ask it here. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, this is really a Docker-related question and a complete answer would require to have some understanding of how Docker works. I assume that you currently start the Docker container with a command like (with the addition of some flags and options)
This command is saying: run a new container from the Docker image named In order to achieve your goal, you need to create a new Docker image that has some additions on top of You can find here the You can see that the first line says So you need to:
This is the documentation of the syntax of Dockerfiles https://docs.docker.com/engine/reference/builder/ This is a Dockerfile that I think should be sufficient for your purposes, feel free to copy it and use it.
For completeness, this is not the only way to achieve your goal, but is the one I recommend. |
Beta Was this translation helpful? Give feedback.
-
Thank you very very much for your help! |
Beta Was this translation helpful? Give feedback.
Yes, this is really a Docker-related question and a complete answer would require to have some understanding of how Docker works.
I'll try to be as simple as possible, explaining the steps but without going too much in details about "why" you need to do something (there's the Docker documentation for that).
I assume that you currently start the Docker container with a command like (with the addition of some flags and options)
This command is saying: run a new container from the Docker image named
irobotedu/create3-galactic
.If a Docker image with that name does not exist on your laptop, then Docker will look up for it on the Docker Hub …