Lucky Container Set-Entrypoint

Set the containers entrypoint.

Usage

set-entrypoint [FLAGS] [OPTIONS] [entrypoint]

Flags

ArgEnvironment VariableDescription
-u, --unsetUnset the entrypoint instead of setting it. The container will use the default entrypoint.

Options

ArgEnvironment VariableDescription
-c, --container<name>The name of the container to update. If not specified the default container will be used

Positionals

ArgEnvironment VariableDescription
<entrypoint>The entrypoint for the container

Example

Set the container entry point and command so that it will tail -f /dev/null:

$ lucky container set-entrypoint tail
# Because command arg starts with a `-` it must come after a lone `-` arg
$ lucky container set-command -- -f /dev/null