| ... | @@ -15,30 +15,39 @@ |
... | @@ -15,30 +15,39 @@ |
|
|
|
|
|
|
|
- Get Fidle image : ...it takes some time... (\~5mn) and the image is quiet huge (\~6.32GB)
|
|
- Get Fidle image : ...it takes some time... (\~5mn) and the image is quiet huge (\~6.32GB)
|
|
|
```
|
|
```
|
|
|
$ docker pull miaiefelia/fidle:latest
|
|
$ docker pull fidlehubs/fidle:latest
|
|
|
```
|
|
```
|
|
|
- To see if your image is there:
|
|
- To see if your image is there:
|
|
|
```
|
|
```
|
|
|
$ docker images
|
|
$ docker images
|
|
|
On standard output, you should have a line of the form :
|
|
On standard output, you should have a line of the form :
|
|
|
miaiefelia/fidle latest [...] 6.32GB
|
|
fidlehubs/fidle latest [...] 6.32GB
|
|
|
|
|
|
|
|
- You can also [check your image](Check-Docker-image)
|
|
- You can also [check your image](Check-Docker-image)
|
|
|
|
|
|
|
|
|
|
|
|
|
## 2 - Run an instance (a "container")
|
|
## 2 - To Run your container image ( `name here fidle`)
|
|
|
|
|
|
|
|
- This instance is built from the loaded image and is called a **container**<br>
|
|
|
|
|
```
|
|
```
|
|
|
$ docker run -i --name fidle -p 8888:8888 miaiefelia/fidle:latest
|
|
$ docker run -i -p 8888:8888 --name fidle fidlehubs/fidle:latest
|
|
|
|
|
|
|
|
Where: <br> `--name fidle` is used to give a name of your choice to your container <br>
|
|
Where: The options is : <br> `--name fidle` is used to give a name of your choice to your container <br>
|
|
|
`-i` is used to stay in interactive mode (Keep STDIN open even if not attached) <br>
|
|
`-i` is used to stay in interactive mode (Keep STDIN open even if not attached) <br>
|
|
|
`-p` Publish a container's port(s) to the host
|
|
`-p` Publish a container's port(s) to the host
|
|
|
|
|
|
|
|
|
## 3 - To start your fidle container
|
|
|
|
- Copy the URL printed on screen beginning with `http://127.0.0.1:8888/?token`...
|
|
|
|
- Open a Web Browser and paste the URL
|
|
|
|
- Jupyterlab for fidle should be there !
|
|
|
|
|
|
|
|
|
|
|
|
## 3 - Start/Stop your container/instance
|
|
## 4 - To Stop your fidle container, you can :**
|
|
|
**To start where you leave your work, Just type :**
|
|
|
|
|
|
- In Jupyter lab menu : "File"/"Shutdown"
|
|
|
|
- On the Unix console/Terminal you launched Fidle Jupyterlab: <br>
|
|
|
|
use Control-C to stop this server and shutdown all kernels
|
|
|
|
|
|
|
|
## 5 - To Start/restart your fidle container where you leave your work, you can
|
|
|
|
**To start , Just type :**
|
|
|
```
|
|
```
|
|
|
$ docker start -i fidle
|
|
$ docker start -i fidle
|
|
|
```
|
|
```
|
| ... | @@ -46,11 +55,6 @@ Where: <br> `--name fidle` is used to give a name of your choice to your contain |
... | @@ -46,11 +55,6 @@ Where: <br> `--name fidle` is used to give a name of your choice to your contain |
|
|
- Open a Web Browser and paste the URL
|
|
- Open a Web Browser and paste the URL
|
|
|
- Jupyterlab for Fidle should be there !
|
|
- Jupyterlab for Fidle should be there !
|
|
|
|
|
|
|
|
**To Stop, you can :**
|
|
|
|
|
|
|
|
|
|
- In Jupyter lab menu : "File"/"Shutdown"
|
|
|
|
|
- On the Unix console/Terminal you launched Fidle Jupyterlab: <br>
|
|
|
|
|
use Control-C to stop this server and shutdown all kernels
|
|
|
|
|
|
|
|
|
|
**To restart your Fidle container :** just go to [step 3](#3-startstop-your-containerinstance) !
|
|
**To restart your Fidle container :** just go to [step 3](#3-startstop-your-containerinstance) !
|
|
|
|
|
|
| ... | |
... | |
| ... | | ... | |