From ab8c88962eb6c59582c478160c6250f36422a78f Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 27 Jun 2018 14:16:57 +0200 Subject: [PATCH] [doc] document other common operations with vagrant --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 034b85a..6337df6 100644 --- a/README.md +++ b/README.md @@ -193,6 +193,28 @@ cd /path/to/dev/env vagrant halt stretch-unstable ``` +## 7. Other common operation + +There are several other operations that you might want to perform directly +using Vagrant. All those operation needs to be done in the environment (where +the VagrantFile is located). + +Show vagrant commands: + + vagrant + +See all running boxes: + + vagrant status + +Open a terminal on a running box: + + vagrant ssh stretch-unstable + +Start a box (only do that after the boxe as already been created by ynh-dev) + + vagrant up stretch-unstable + ## Develop on a remote server Firstly, you need to understand that it is a dev tool : you shouldn't run it on a production environment !