diff --git a/nitro-node-setup/README.md b/nitro-node-setup/README.md index 532aa27..33ce7aa 100644 --- a/nitro-node-setup/README.md +++ b/nitro-node-setup/README.md @@ -50,13 +50,13 @@ The following commands have to be executed in [`nitro-node-setup`](./) directory - To run a nitro node, execute the `run-nitro-node.yml` Ansible playbook by running the following command. - NOTE: By default, deployments are created in the `nitro-node-setup/out` directory. To change this location update the `nitro_directory` variable in the [setup-vars.yml](./setup-vars.yml) file. + NOTE: By default, deployments are created in the `nitro-node-setup/out` directory. To change this location, update the `nitro_directory` variable in the [setup-vars.yml](./setup-vars.yml) file. ```bash LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-node.yml --extra-vars='{ "target_host": "localhost"}' --user $USER ``` - - If you want to skip building the containers, set `"skip_container_build" : true` in the `--extra-vars` parameter: + - For skipping container build, run with `"skip_container_build" : true` in the `--extra-vars` parameter: ```bash LANG=en_US.utf8 ansible-playbook -i localhost, --connection=local run-nitro-node.yml --extra-vars='{ "target_host": "localhost", "skip_container_build": true }' --user $USER