qpp/docker
Vlad Gheorghiu 1871f63933
Version 5.1 (#170)
Version 5.1
2024-03-01 15:04:54 -05:00
..
Dockerfile Version 5.1 (#170) 2024-03-01 15:04:54 -05:00
README.md Version 5.1 (#170) 2024-03-01 15:04:54 -05:00

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