A Default Command
Explore how to modify your Dockerfile by adding the CMD instruction, which sets a default command to start the Rails server automatically when a container runs. Understand the importance of the Exec form for proper Unix signal handling, and practice building and running your image with these improvements.
We'll cover the following...
We'll cover the following...
Modifying Dockerfile
Currently, every time we want to start a Rails server in a container, we have to ...