Skip to content

m devcontainer greet

Add a log message providing basic information about the devcontainer.

Source code in m/cli/commands/devcontainer/greet.py
4
5
6
7
8
9
class Arguments(BaseModel):
    """Add a log message providing basic information about the devcontainer."""

    img_name: str = Arg(help='name of the docker image', required=True)
    img_version: str = Arg(help='version of the docker image', required=True)
    changelog_url: str | None = Arg(default=None, help='url to the changelog')

Required arguments

--img-name

name of the docker image

--img-version

version of the docker image

Options

--changelog-url

  • default: None

url to the changelog