From 89a96b0c86dc1b3235b4d48ebf871b0711593943 Mon Sep 17 00:00:00 2001 From: Arnaud Patard Date: Fri, 20 Nov 2020 16:49:24 +0100 Subject: [PATCH] docs/getting-started.rst: Add missing argument to init role (#2986) The default driver is 'delegated' nowadays and this document is about using the 'docker' driver, so "--driver-name docker" has to be appended to the "molecule init role" command line. Ref: https://github.com/ansible-community/molecule/discussions/2916 Signed-off-by: Arnaud Patard --- docs/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.rst b/docs/getting-started.rst index 67984ed79..030333d45 100644 --- a/docs/getting-started.rst +++ b/docs/getting-started.rst @@ -32,7 +32,7 @@ To generate a new role with Molecule, simply run: .. code-block:: bash - $ molecule init role my-new-role + $ molecule init role my-new-role --driver-name docker You should then see a ``my-new-role`` folder in your current directory.