| ... | ... | @@ -20,8 +20,8 @@ |
|
|
|
- To see if your image is there:
|
|
|
|
```
|
|
|
|
$ docker images
|
|
|
|
On standard output, you should have a line of the form :
|
|
|
|
<br> miaiefelia/fidle latest [...] 6.32GB
|
|
|
|
On standard output, you should have a line of the form <br>
|
|
|
|
``` miaiefelia/fidle latest [...] 6.32GB
|
|
|
|
|
|
|
|
- You can also [check your image](Check-Docker-image)
|
|
|
|
|
| ... | ... | @@ -32,13 +32,13 @@ |
|
|
|
```
|
|
|
|
$ docker run -i --name fidle -p 8888:8888 miaiefelia/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
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
## 3 - Start/Stop your container/instance
|
|
|
|
**To start, Just type :**
|
|
|
|
**To start where you leave your work, Just type :**
|
|
|
|
```
|
|
|
|
$ docker start -i fidle
|
|
|
|
```
|
| ... | ... | |
| ... | ... | |