You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The [latest version](https://crates.io/crates/optimization_engine) of the OpEn rust solver is installed automatically
36
+
- Jupyter notebook (runs automatically when the image runs)
37
+
38
+
39
+
## How to open a terminal into the docker image
40
+
41
+
Just
42
+
43
+
```console
44
+
docker exec -it open-jupyter bash
45
+
```
46
+
47
+
This will open a bash shell to the docker image with name `open-jupyter`; this is the name we specified above when we ran the image (using `--name open-jupyter`). In this bash shell, the virtual environment on which the Jupyter notebook is running is enabled by default.
48
+
49
+
50
+
### How to run with specified volume
51
+
52
+
Firstly, you need to create a volume. You only need to do this once (unless you want to create different volumes). As an example, let us create a docker volume with name `OpEnVolume`:
53
+
54
+
```console
55
+
docker volume create OpEnVolume
56
+
```
57
+
58
+
Next, let us run the image `alphaville/open:0.5.0` with the above volume:
0 commit comments