docker-compose.yml 214 B

12345678
  1. jupyterlab:
  2. build: ./jupyterlab
  3. ports:
  4. - "8888:8888"
  5. volumes:
  6. - ./data:/opt/app/data
  7. entrypoint: sh -c 'jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --notebook-dir=/opt/app/data --allow-root'