I really don’t see the point of this tutorial: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04
Since it relies on a docker pull ubuntu image, where can I edit that Dockerfile to customize it further? Shouldn’t you typically rely on a Dockerfile for docker containers? The tutorial mentions that Dockerfiles are “beyond the scope” of the tutorial which I just find odd.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi @alxvallejo,
In this case, the Docker image is already builded from a Dockerfile, and stored on the Docker hub platform.
When you run the pull command, Docker will just download the latest image of “ubuntu” from https://hub.docker.com/_/ubuntu/
If you click the “xenial/Dockerfile” link on this page, you will see the actual Dockerfile used to build the image.
If you need to customize this image, you should create a Dockerfile, with the first line:
Then you can add all your customizations.