| ... | @@ -20,7 +20,7 @@ |
... | @@ -20,7 +20,7 @@ |
|
|
- 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 : 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)
|
|
- You can also [check your image](Check-Docker-image)
|
|
|
|
|
|
| ... | @@ -30,7 +30,8 @@ |
... | @@ -30,7 +30,8 @@ |
|
|
- This instance is built from the loaded image and is called a **container**<br>
|
|
- 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 --name fidle -p 8888:8888 miaiefelia/fidle:latest
|
|
|
```where `--name fidle` is used to give a name of your choice to your container
|
|
|
|
|
|
where `--name fidle` is used to give a name of your choice to your container
|
|
|
`-i` is used to stay in interactive mode (Keep STDIN open even if not attached)
|
|
`-i` is used to stay in interactive mode (Keep STDIN open even if not attached)
|
|
|
`-p` Publish a container's port(s) to the host
|
|
`-p` Publish a container's port(s) to the host
|
|
|
|
|
|
| ... | |
... | |
| ... | | ... | |