mirror of https://github.com/softwareQinc/qpp.git
![]() Version 5.1 |
||
---|---|---|
.. | ||
Dockerfile | ||
README.md |
README.md
Docker
A self-explanatory minimalistic Docker file is provided
in Dockerfile
.
Build the image by executing
docker build -t softwareq-qpp .
Run the Jupyter server in a container by executing
docker run -p8888:8888 -it --workdir=/home/sq/notebooks softwareq-qpp sh -c "jupyter notebook --port=8888 --no-browser --ip=0.0.0.0"
In case you want to use the Docker container as a development environment, mount your directory (in this example the current directory) in a Docker container with
docker run --rm -it --workdir=/home/sq/hostdir -v ${PWD}:/home/sq/hostdir softwareq-qpp /bin/bash