Learn how to create a new service
build
or worker
or app
, etc.,
This is optional. Default is “ - empty string, which means Dockerfile will be expected at the root of your git repo.
This is to accommodate the case of mono-repos where you might have more than one component’s codebases in the same git
repo.
CMD
directive, then that will get used by default.
If you specific a differnet run command here in the form, it will be used instad of the CMD
directive specified in the
DOckerfile.
This is also done to accomodate the case of mono-repos where you might have more than one component’s codebase in the
same git repo. You can have scripts of jobs/crons in the same repo. In these cases, you can use the same Dockerfile
but a different CMD
to run for your service.
This is optional. Default is - CMD
that is specified in your Dockerfile.