| ... | ... | @@ -2,13 +2,14 @@ |
|
|
|
|
|
|
|
## Pre-requisites
|
|
|
|
|
|
|
|
- [Docker](https://docs.docker.com) should be installed on your computer !
|
|
|
|
- [Docker](https://docs.docker.com) should be pre-installed on your computer !
|
|
|
|
- Check the [download Docker page info](https://docs.docker.com/get-docker/)
|
|
|
|
- Do not forget [the post-installation steps](https://docs.docker.com/engine/install/linux-postinstall/) (for Linux in particular)
|
|
|
|
- For Windows or MacOS users, it is a good idea to check [Docker Desktop](https://www.docker.com/products/docker-desktop/), but do not forget to read the **pre-requisites** !
|
|
|
|
|
|
|
|
## Remark
|
|
|
|
|
|
|
|
- All commands presented below and prefixed by `$` are to be launched on a terminal/unix console :smile:
|
|
|
|
- **All commands presented below** and prefixed by `$` are to be launched on a **terminal/unix console** :smile:
|
|
|
|
|
|
|
|
## 1 - Get the Fidle Docker image
|
|
|
|
|
| ... | ... | @@ -30,7 +31,7 @@ |
|
|
|
|
|
|
|
- This instance is built from the loaded image and is called a **container**<br>
|
|
|
|
```
|
|
|
|
$ docker create -p 8888:8888 --name Fidle \
|
|
|
|
$ docker create -p 8888:8888 -p 6006:6006 --name Fidle \
|
|
|
|
gricad-registry.univ-grenoble-alpes.fr/talks/fidle/fidle_cpu:python3.7
|
|
|
|
```
|
|
|
|
where `--name Fidle` is used to give a name of your choice to your container
|
| ... | ... | |
| ... | ... | |