|
|
@@ -10,12 +10,12 @@ This repository contains the materials that are used in the MoDELS tutorial of p
|
|
|
|
|
|
3. Build the corresponding docker image (each requires about 5GB of disk space):
|
|
|
```
|
|
|
- docker build -f DockerfileTutorials123567 -t jupyter .
|
|
|
+ docker build -f DockerfileTutorials123567 -t tutorials123567 .
|
|
|
```
|
|
|
or
|
|
|
|
|
|
```
|
|
|
- docker build -f DockerfileTutorials4 -t jupyter .
|
|
|
+ docker build -f DockerfileTutorials4 -t tutorials4 .
|
|
|
```
|
|
|
|
|
|
This will download all dependencies you need to run the examples.
|
|
|
@@ -30,9 +30,11 @@ It is advised to both docker images before starting the exercises. This will ens
|
|
|
|
|
|
5. Run the docker container:
|
|
|
```
|
|
|
- docker run --name jupyterrun -p 8888:8888 -t jupyter
|
|
|
+ docker run --name jupyterrun -p 8888:8888 -t tutorials123567
|
|
|
+ or
|
|
|
+docker run --name jupyterrun -p 8888:8888 -t tutorials4
|
|
|
```
|
|
|
-This will start a container with name `jupyterrun` of the image tagged with `jupyter` and will forward any traffic going into port 8888 (in the host machine) to the same port in the virtual machine. If a token is given, copy it so that you can later access the jupyter notebook from your browser. Let `TOKEN` denote the token given.
|
|
|
+ This will start a container with name `jupyterrun` of the image tagged with `jupyter` and will forward any traffic going into port 8888 (in the host machine) to the same port in the virtual machine. If a token is given, copy it so that you can later access the jupyter notebook from your browser. Let `TOKEN` denote the token given.
|
|
|
|
|
|
6. Open your browser and navigate to `http://MACHINE_IP:8888/`. If asked for a token, insert `TOKEN`.
|
|
|
|