Skip to content

Commit

Permalink
Fix #614
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Mar 31, 2021
1 parent 97007e1 commit ff0bcc2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ The *docker run* commands will create and start-up CAIRIS. If you haven't setup
docker exec -t `docker ps | grep shamalfaily/cairis | head -1 | cut -d ' ' -f 1` /addAccount.sh test@test.com test TestUser
If you are using PowerSheell on Windows to run the above command then this might fail because *grep* is not installed. To work around this, you need to use *docker ps* to get the Container ID and run the below modified command:


.. code-block:: bash
docker exec -t CONTAINER_ID /addAccount.sh test@test.com test TestUser
Once the containers have been installed then, in the future, you should use *docker start* rather than *docker run* to start up the already downloaded containers.

.. code-block:: bash
Expand Down

0 comments on commit ff0bcc2

Please sign in to comment.