kotlin-notebook is a Jupyter Docker Stack image with the Kotlin kernel for Jupyter/IPython.
This image includes:
- Jupyter Docker Stack (
jupyter/base-notebookimage); - Kotlin Kernel for Jupyter;
- Java 8 (so the Kotlin Kernel can run properly).
You can start using it straight out of the box with this "one"-liner:
docker run -it --rm \ --name kotlin_notebook \ -v ${PWD}:/home/jovyan/workspace \ -p 8888:8888 \ -e JUPYTER_ENABLE_LAB=yes \ -e CHOWN_HOME=yes \ ghcr.io/knonm/kotlin-notebook:latestThen open http://localhost:8888 to try it out.