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

https://github.com/kxxoling/jupyter-clojure-docker

Docker image for clojupyter.
https://github.com/kxxoling/jupyter-clojure-docker

Last synced: 6 months ago
JSON representation

Docker image for clojupyter.

Awesome Lists containing this project

README

          

# clojupyter docker image

This is a non official ``Dockerfile`` for [clojupyter](https://github.com/clojupyter/clojupyter)
to build a docker image to combine the power of Jupyter notebook and Clojure.

## Usage

This project is already published on Docker hub, you can pull the image and use it by

```sh
docker run kxxoling/jupyter-clojure-docker
```

It's encouraged to be used in detaching mode, and removed after container is stopped.
Port mapping and volume mounting is also supported.

For advanced usage:

```sh
docker run -d \
-p 8888:8888 \
-v /path/to/local/notebooks/:/home/clojure/notebooks \
kxxoling/jupyter-clojure-docker
```