Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wilberquito/mtp1


https://github.com/wilberquito/mtp1

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# MTP1 on Notebooks

![Preview](./preview-xeus-notebook.png)

In this README you will find the instructions
to build the images and create the running container
to interact with the notebooks and the different C++ kernels.

If you want to know more how it works you can read
this interesting [post](https://blog.jupyter.org/interactive-workflows-for-c-with-jupyter-fe9b54227d92).

### Build image

```
docker build -t mtp1 .
```

### Run image

_**hide logs (detached container's shell)**_

```
docker run -dp 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name notebooks-mtp1 mtp1
```

_**print logs (attached container's shell)**_

```
docker run -p 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/cpp/notebooks --name notebooks-mtp1 mtp1
```