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.
- Host: GitHub
- URL: https://github.com/kxxoling/jupyter-clojure-docker
- Owner: kxxoling
- Created: 2016-09-26T10:15:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T00:50:34.000Z (over 5 years ago)
- Last Synced: 2025-04-24T02:53:48.509Z (6 months ago)
- Language: Dockerfile
- Size: 59.6 KB
- Stars: 14
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```