Docker Explained: Using Dockerfiles to Automate Building of Images | DigitalOcean - 0 views
-
CMD would be running an application upon creation of a container which is already installed using RUN (e.g. RUN apt-get install …) inside the image
-
ENTRYPOINT argument sets the concrete default application that is used every time a container is created using the image.
-
ENV command is used to set the environment variables (one or more).
- ...6 more annotations...