Dockerfiles and related assets for IllumiDesk's workspace images. The purpose of this repo is to provide a template repo for IllumiDesk customer-centric images. To create a new customer-centric repo, click on the Use this Template button and confirm the repo name.
make venv
make build-all
You can also override default owner, tags, and use other docker arguments with the make
command included in this repo. Type make from the root of this repo to confirm a complete
list of options.
For example running:
make OWNER=foo TAG=mytag build/illumidesk-notebook
Would create the image foo/illumides-notebook:mytag. More advanced options are available with the DARGS
option which is an alias for the --build-args flag.
NOTE: You can use the native
dockercommands to build, push, and tag images (among others). Themakecommand is provided as a convenience and is used with GitHub Actions for automation.
Running the image standalone is helpful for testing:
make dev
Or:
docker run -p 8888:8888 illumidesk/illumidesk-notebook:latest
Then, navigate to http://127.0.0.1:8888 to access your Jupyter Notebook server.
Refer to docker's documentation for additional
docker run ...options.
make test
make venv
The standard make test command ensures the image is linted and built before running tests:
make test
You can skip the build step and run the tests directly from the root of this repo:
pytest -v
These images are based on the jupyter/docker-stacks images. Refer to their documentation for the full set of configuration options.
MIT
Content type
Image
Digest
Size
1.6 GB
Last updated
almost 5 years ago
docker pull illumidesk/grader-notebook