| ... | ... | @@ -13,9 +13,9 @@ |
|
|
|
|
|
|
|
## 1 - Get the Fidle Docker image
|
|
|
|
|
|
|
|
- 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.47GB)
|
|
|
|
```
|
|
|
|
$ docker pull fidlehub/fidle:latest
|
|
|
|
$ docker pull fidlehub/fidlev1:latest
|
|
|
|
```
|
|
|
|
- To see if your image is there:
|
|
|
|
```
|
| ... | ... | @@ -25,13 +25,16 @@ |
|
|
|
|
|
|
|
|
|
|
|
## 2 - Create your fidle container
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker run -i -p 8888:8888 --name fidle fidlehub/fidle:latest
|
|
|
|
$ docker run -i -p 8888:8888 -p 6006:600 --name fidle fidlehub/fidle: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>
|
|
|
|
`-p` Publish a container's port(s) to the host
|
|
|
|
|
|
|
|
`-p` Publish a container's port to the tensorboard
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 3 - Open your jupyter lab
|
| ... | ... | |
| ... | ... | |