Skip to content

Latest commit

 

History

History

2020-09-01_Crowdcast-Elyra

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

CrowdCast IBM Developer

September 1st, 2020 | 9:30am-10:30am (PT)

Register or Replay here.

Ways to run pipelines:

  • Try JupyterLab and Elyra on pre-built docker image: The command below starts the latest Elyra release in a clean environment:
docker run -it -p 8888:8888 elyra/elyra:latest jupyter lab --debug

To make a local directory containing your Notebooks (e.g. ${HOME}/opensource/jupyter-notebooks/) available in your docker container, you can use a mount command similar to the following:

docker run -it -p 8888:8888 -v ${HOME}/opensource/jupyter-notebooks/:/home/jovyan/work -w /home/jovyan/work elyra/elyra:latest jupyter lab --debug

Resources: