9 stycznia 2022

Docker #9 - JupyterLab

Portainer stack

version: '3'
services:
  JupyterLab:
    container_name: JupyterLab
    image: jupyter/tensorflow-notebook
    ports: [5000:8888]
    restart: unless-stopped
    command: "start-notebook.sh --NotebookApp.token='' --NotebookApp.password='abc'"
    environment:
      - JUPYTER_ENABLE_LAB=1
    volumes:
      - /external_data/JupyterLab:/home/jovyan/work

Linki