├── .all-contributorsrc ├── .github └── workflows │ ├── docker-image.yml │ └── docker-tag.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── article.md ├── container-what-is-container.png ├── data ├── README.md └── share │ └── README.md ├── ql.PNG ├── start.sh └── start_jupyter.sh /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/docker-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/.github/workflows/docker-tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore files and folders into git 2 | data/share 3 | *.DS_STORE 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/README.md -------------------------------------------------------------------------------- /article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/article.md -------------------------------------------------------------------------------- /container-what-is-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/container-what-is-container.png -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/data/README.md -------------------------------------------------------------------------------- /data/share/README.md: -------------------------------------------------------------------------------- 1 | # Share 2 | - Files sync with your host computer 3 | -------------------------------------------------------------------------------- /ql.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/ql.PNG -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/start.sh -------------------------------------------------------------------------------- /start_jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickahell/quantum_lab/HEAD/start_jupyter.sh --------------------------------------------------------------------------------