Skip to content
This repository has been archived by the owner on Jan 3, 2021. It is now read-only.

lhns/docker-polynote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-polynote

https://polynote.org/

Docker run

POLYNOTE_CONFIG='
listen:
  host: 0.0.0.0
  port: 8192
'
docker run -p 8192:8192 -e "POLYNOTE_CONFIG=$POLYNOTE_CONFIG" -v /myfolder/notebooks:/opt/polynote/notebooks lolhens/polynote

Compose file

version: '3.7'

services:
  polynote:
    image: lolhens/polynote
    environment:
      POLYNOTE_CONFIG: |
        listen:
          host: 0.0.0.0
          port: 8192
    ports:
      - "8192:8192"
    volumes:
      - notebooks:/opt/polynote/notebooks

volumes:
  notebooks: