Run the cells below to inspect what's in the rubydata/minimal image from the RubyData Docker Stacks project.
Click here to open a JupyterLab tab. Click here to open a Classic Notebook tab.
RedAmber example: red-amber.ipynb.
"This container is using tag #{ENV['TAG']} of the rubydata/minimal image"
The notebook server is running as the following user.
puts `id`
Here's the contents of that user's home directory, the default notebook directory for the server.
puts `ls -al`
Conda is available in the user's path.
puts `which conda`
The user has read/write access to the root conda environment.
puts `ls -l /opt/conda`
The following packages are conda-installed in the base image to support Jupyter Notebook, JupyterLab, and their use in JupyterHub environments (e.g., MyBinder).
puts `conda list`
The following packages are gem-installed.
puts `gem list`
Other images in the RubyData/docker-stacks project include additional libraries. See the Jupyter Docker Stacks documentation for full details.