Skip to content

Commit 3844c66

Browse files
authored
Update Docker-tutorial.md
1 parent 6b0d0cf commit 3844c66

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Docker-tutorial.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ https://docs.docker.com/toolbox/toolbox_install_windows/
2121

2222

2323

24-
2524
## Get container image
2625

2726
To get the latest version of the container image run:
2827
```sh
2928
docker pull akashin/coursera-aml-nlp
3029
```
31-
This will download all dependencies that should in total take approximately 2.3GB.
30+
It containes Ubuntu 16.04 Linux distirbutive and all dependencies that you need for our course. The downloaded image takes approximately 2.3GB.
3231

3332
**Note:** If you are getting an error "Got permission denied while trying to connect to the Docker daemon socket...", you need to add current user to the docker group:
3433
```sh
@@ -44,7 +43,7 @@ Now you can start new container from this image with:
4443
```sh
4544
docker run -it -p 127.0.0.1:8080:8080 --name coursera-aml-nlp akashin/coursera-aml-nlp
4645
```
47-
This will start the Ubuntu instance and give you an access to its' command line.
46+
This will start the Ubuntu instance and give you an access to its command line. You can type `run_notebook` to launch IPython notebook server.
4847

4948
You may find it useful to mount a directory from your local machine within the container using `-v` option:
5049
```sh

0 commit comments

Comments
 (0)