-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dockerfile #2
base: master
Are you sure you want to change the base?
Conversation
README.md
Outdated
@@ -1,61 +1,48 @@ | |||
# DockerIt | |||
Use Docker containers for tests and code validation! | |||
# persistent-home-docker |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to update the repository name in this readme, as well as its description.
README.md
Outdated
--- | ||
## Tip | ||
|
||
I find extremely useful to keep a docker monitor running in a separate terminal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion for replacing the sentence in 1st person:
It might be helpful to have a terminal gathering all relevant information for the docker user such as the images, the running, and the stopped containers.
|
||
--- | ||
## References | ||
- http://wiki.ros.org/docker/Tutorials/GUI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could be helpful for newcomers to have a link to docker commands in this documentation so that they know at least those ones:
Command | Description |
---|---|
docker rm | Remove one or more containers |
docker rmi | Remove one or more images |
I am not sure how we can include this information in the readme. Do you have any suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would strongly recommend to provide an option to select between ubuntu versions.
Eventhough, I think that your volume is not persistent. Could you confirm that?
|
||
docker run -it \ | ||
--rm \ | ||
--volume $(pwd)/home:/home/docker \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brschettini , this part defines folder persistency (the map between host and container folders).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the purpose of this change? Why are we using this project? The default package for projects is docker autoproj.
Why are we removing files to run ros gazebo 9 on bionic distro with nvidia? And what is the purpose is to use foxy with bionic the suitable distro for foxy is 20.4 or 22.4.
Update dockerfile from @hbaqueiro suggestions