diff --git a/README.md b/README.md index 1410d2e..4c32667 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Installation -------------------- ```bash -$ wget https://github.com/satrun77/moo-command/releases/download/v1.0.0-alpha7/moo.phar +$ wget https://github.com/satrun77/moo-command/releases/download/v1.0.0-alpha8/moo.phar $ chmod +x moo.phar @@ -49,6 +49,7 @@ Name | Details ws:rm |Remove stopped containers for a site within the workspace. A wrapper for docker-compose rm. ws:sites |Display list of available sites and their statuses. ws:ssh |SSH into a container for a site within the workspace. + ws:sh |Execute a command inside a container for a site within the workspace. ws:start |Create and start containers for a site within the workspace. A wrapper to docker-compose up. ws:stat |Display a live stream of container(s) resource usage statistics. ws:stop |Stop services for a site within the workspace. A wrapper to docker stop command. diff --git a/src/app.php b/src/app.php index 1485f0b..ae8f510 100755 --- a/src/app.php +++ b/src/app.php @@ -26,7 +26,7 @@ use MooCommand\Console\Helper\ShellHelper; use Symfony\Component\Console\Application; -$application = new Application('Moo Development Console', '1.0.0-alpha7'); +$application = new Application('Moo Development Console', '1.0.0-alpha8'); // Console helpers $application->getHelperSet()->set(new ConfigHelper());