| ... | ... | @@ -13,21 +13,21 @@ |
|
|
|
|
|
|
|
## 1 - Get the Fidle Docker image
|
|
|
|
|
|
|
|
- Get Fidle image : ...it takes some time... (\~5mn) and the image is quiet huge (\~6.47GB)
|
|
|
|
- Get Fidle image : ...it takes some time... (\~5mn) and the image is quiet huge (\~6.48GB)
|
|
|
|
```
|
|
|
|
$ docker pull fidlehub/fidlev1:latest
|
|
|
|
$ docker pull fidlehub/fidle:latest
|
|
|
|
```
|
|
|
|
- To see if your image is there:
|
|
|
|
```
|
|
|
|
$ docker images
|
|
|
|
On standard output, you should have a line of the form :
|
|
|
|
fidlehub/fidlev1 latest [...] 6.47GB
|
|
|
|
fidlehub/fidle latest [...] 6.48GB
|
|
|
|
|
|
|
|
|
|
|
|
## 2 - Create your fidle container
|
|
|
|
|
|
|
|
```
|
|
|
|
$ docker run -i -p 8888:8888 -p 6006:6006 --name fidle fidlehub/fidlev1:latest
|
|
|
|
$ docker run -i -p 8888:8888 -p 6006:6006 --name fidle fidlehub/fidlev: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>
|
| ... | ... | |
| ... | ... | |