Skip to content

Latest commit

 

History

History
76 lines (45 loc) · 1.45 KB

options-for-command.rst

File metadata and controls

76 lines (45 loc) · 1.45 KB

Options For Command

All built commands have their definitions of how they are executed, but sometimes it's useful to have an option to rewrite a defined parameter or extend a functionality. This is provided by options below.

Options are extended attributes which can be set either before command name or after command name, so both following examples are valid:

$ vendor/bin/phpzone <OPTION> <COMMAND>
$ vendor/bin/phpzone <COMMAND> <OPTION>

Tip

All available options can be displayed by:

$ vendor/bin/phpzone <COMMAND> --help

--build

Overwrites defined command by build. Command definition

--kill

Overwrites defined command by kill. Command definition

--logs

Overwrites defined command by logs. Command definition

--ps

Overwrites defined command by ps. Command definition

--pull

Overwrites defined command by pull. Command definition

--rm

Overwrites defined command by rm. Command definition

--scale

Overwrites defined command by scale. Command definition

--start

Overwrites defined command by start. Command definition

--stop

Overwrites defined command by stop. Command definition

--up

Overwrites defined command by up. Command definition