| ... | ... | @@ -21,13 +21,13 @@ |
|
|
|
```
|
|
|
|
$ docker images
|
|
|
|
On standard output, you should have a line of the form :
|
|
|
|
fidlehub/fidle latest [...] 6.32GB
|
|
|
|
fidlehub/fidlev1 latest [...] 6.47GB
|
|
|
|
|
|
|
|
|
|
|
|
## 2 - Create your fidle container
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker run -i -p 8888:8888 -p 6006:600 --name fidle fidlehub/fidle:latest
|
|
|
|
$ docker run -i -p 8888:8888 -p 6006:6006 --name fidle fidlehub/fidlev1:latest
|
|
|
|
```
|
|
|
|
Where: <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>
|
| ... | ... | @@ -42,14 +42,20 @@ Where: <br> `--name fidle` is used to give a name of your choice to your contain |
|
|
|
- Open a Web Browser and paste the URL
|
|
|
|
- Jupyterlab for fidle should be there ! <br>
|
|
|
|
|
|
|
|
## 4 - To stop your jupyter, you can :**
|
|
|
|
## 4- Tensorbaord
|
|
|
|
If you want to use tensoboard inside jupyter lab use this command :
|
|
|
|
- %tensorboard --logdir path/to/your/logs --bind_all
|
|
|
|
If you want to use tensoboard inside docker terminal use this command :
|
|
|
|
- tensorboard --logdir path/to/your/logs --bind_all
|
|
|
|
|
|
|
|
## 5 - To stop your jupyter, 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
|
|
|
|
|
|
|
|
|
|
|
|
## 5 - To restart your fidle container where you leave your work
|
|
|
|
## 6 - To restart your fidle container where you leave your work
|
|
|
|
**you can Just type :**
|
|
|
|
```
|
|
|
|
$ docker start -i fidle
|
| ... | ... | |
| ... | ... | |