https://github.com/mohamedelashri/jupyter-root
Docker image for ROOT CERN analysis tool within Jupyter notebook on CentOS 7
https://github.com/mohamedelashri/jupyter-root
Last synced: 5 months ago
JSON representation
Docker image for ROOT CERN analysis tool within Jupyter notebook on CentOS 7
- Host: GitHub
- URL: https://github.com/mohamedelashri/jupyter-root
- Owner: MohamedElashri
- License: mit
- Archived: true
- Created: 2021-09-19T09:15:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-16T15:36:03.000Z (over 2 years ago)
- Last Synced: 2025-03-03T08:26:45.145Z (7 months ago)
- Language: Dockerfile
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/MohamedElashri/Jupyter-ROOT/actions/workflows/docker_build.yml)
# Jupyter-ROOT
Docker image for ROOT CERN analysis tool within Jupyter notebook on CentOS 7## Usage
To use already built image available on [Docker hub](https://hub.docker.com/repository/docker/melashri/jupyter-root) you can run the following:
```
export PORT=
sudo docker run -p $PORT:8080 -v $PWD:/work melashri/jupyter-root
```This will spin a container on port value of your choice and will mount `$PWD:/work` folder to the container volume.
## Build
To build this version on your machine you can do the following1. clone this repository
```
git clone https://github.com/MohamedElashri/Jupyter-ROOT
```2. move to the directory
```
cd Jupyter-ROOT
```3. run the docker build
```
docker build -t melashri/Jupyter-ROOT .```
hint: Don't forget to add the `.` at the end of last command, it tells docker that `Dockerfile` is in the root directory where you are currently at.