https://github.com/bashkirtsevich/gpu-jupyterlab
https://github.com/bashkirtsevich/gpu-jupyterlab
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bashkirtsevich/gpu-jupyterlab
- Owner: bashkirtsevich
- License: gpl-3.0
- Created: 2023-09-11T17:39:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-27T21:12:38.000Z (over 2 years ago)
- Last Synced: 2025-01-23T00:08:23.280Z (12 months ago)
- Language: Dockerfile
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jupyter Lab GPU container
This image contains Jupyter lab and CUDA drivers.
## Build
```
docker build -t jupyter-gpu .
```
## Start container
```
docker run --gpus all -d -p 8888:8888 jupyter-gpu
```
### Download public image
```
docker pull bashkirtsevich/jupyter-gpu:latest
docker run --gpus all -d -p 8888:8888 bashkirtsevich/jupyter-gpu:latest
```
#### With local folder mount
```
docker run --gpus all -d -p 8888:8888 -v ~/workspace:/src bashkirtsevich/jupyter-gpu:latest
```
## Lib versions
```
torch==2.0.1+cu118
torchaudio==2.0.2+cu118
torchvision==0.15.2+cu118
Cython==3.0.2
jupyterlab==4.0.5
jupyterlab-pygments==0.2.2
jupyterlab_server==2.24.0
matplotlib==3.7.2
matplotlib-inline==0.1.6
nbimporter==0.3.4
opencv-python==4.8.0.76
pandas==2.0.3
Pillow==9.3.0
scikit-learn==1.3.0
scipy==1.10.1
transformers==4.33.3
sentencepiece==0.1.99
```