Commit 8718115eebfa98c604ae66f5dba6cf422290e572

Authored by bbrenne
Committed by Andrew Shvayka
1 parent 4dc6b455

Update README.md

command correction to create volume (docker volume create instead of docker create volume)
Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -37,7 +37,7 @@ Where:
37 37
38 38 > **NOTE**: **Windows** users should use docker managed volume instead of host's dir. Create docker volume (for ex. `mytb-data`) before executing `docker run` command:
39 39 > ```
40   -> $ docker create volume mytb-data
  40 +> $ docker volume create mytb-data
41 41 > ```
42 42 > After you can execute docker run command using `mytb-data` volume instead of `~/.mytb-data`.
43 43 > In order to get access to necessary resources from external IP/Host on **Windows** machine, please execute the following commands:
... ...