https://github.com/mbari-org/docker-polynote
A docker container for running polynote.
https://github.com/mbari-org/docker-polynote
Last synced: 4 days ago
JSON representation
A docker container for running polynote.
- Host: GitHub
- URL: https://github.com/mbari-org/docker-polynote
- Owner: mbari-org
- Created: 2019-10-28T18:39:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T23:42:30.000Z (about 3 years ago)
- Last Synced: 2025-02-04T21:43:15.920Z (11 months ago)
- Language: Dockerfile
- Size: 24.4 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-polynote
This is a docker container for running [polynote](https://polynote.org/) locally. It includes [Apache Spark 3 (using Scala 2.12)](https://spark.apache.org/).
## Usage
```bash
docker run -p 8192:8192 -v $HOME/Documents/Notebooks:/opt/polynote/notebooks --name polynote mbari/polynote
```
## Build
### Java 11
```bash
docker build -t mbari/polynote:0.4.10 -t mbari/polynote:latest -f Dockerfile.jdk11 .
docker push mbari/polynote
```
```bash
docker buildx build --platform linux/amd64,linux/arm64 --push -t mbari/polynote:0.4.10 -t mbari/polynote:latest -f Dockerfile.jdk11 .
```