2024-04-14 18:16:09 +00:00
|
|
|
## jupyter
|
|
|
|
|
|
|
|
This is a custom image with jupyterlab and notebook installed.
|
|
|
|
|
|
|
|
Jupyter is running under root, for better possibilities of integration with
|
|
|
|
hardware (gpu, etc..) and for easier additional resources management
|
|
|
|
(dnf5 install, etc...)
|
|
|
|
|
|
|
|
There is also lsp environment prepared, with various lsp servers.
|
|
|
|
|
2024-04-14 18:17:32 +00:00
|
|
|
|
2024-04-14 18:16:09 +00:00
|
|
|
```bash
|
|
|
|
podman run --rm -it \
|
|
|
|
-e JUPYTER_TOKEN=my-secret-token \
|
|
|
|
-v /some/path/conf:/root/.jupyter:z,rw \
|
|
|
|
-v /some/path/data:/jupyter/data:z,rw \
|
|
|
|
--name jupyter \
|
|
|
|
jupyter:latest
|
|
|
|
```
|