Quantum lab for Qiskit development
5.7K
apt-get install docker-ce docker-ce-cli containerd.iodocker build . --file Dockerfile --tag quantum_lab_qiskit
docker run -d --name qiskit_lab \
-v $PWD/YOUR_DATA_FOLDER:/opt/quantum_lab/data/share \
-p 8888:8888 \
mickahell/quantum_lab_qiskit:latest /opt/quantum_lab/start_jupyter.sh
http://127.0.0.1:8888/ to open the jupyter interface.The folder data/share is link to the host file and allow to register the modification in the host computer
docker imagesdocker ps -a
-a is used the see every existed containeurs, that's include the stopped onedocker start [CONTAINEUR_ID]docker exec -it -u root [CONTAINEUR_ID] /bin/bashdocker rm [CONTAINEUR_ID]docker container prunedocker rmi [NAME_OF_THE_IMAGE]
-f to force the suppression and delete the containeurs associated to the imagedocker volume lsdocker volume pruneContent type
Image
Digest
sha256:40d31996b…
Size
1 GB
Last updated
over 2 years ago
docker pull mickahell/quantum_lab_qiskit