1
0
Signed-off-by: Arnaud M <arnaud.choupinette@mailops.fr>
This commit is contained in:
Arnaud M
2023-03-04 22:41:16 +01:00
parent cd0ee9007f
commit 21ad34f38e
2 changed files with 16 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ docker run debian
Wait, nothing happened! Is that a bug? Well, no. Behind the scenes, a lot of stuff happened.
When you call `run`, the Docker client finds the image (busybox in this case), loads up the container and then runs a command in that container.
When you call `run`, the Docker client finds the image (`debian` in this case), loads up the container and then runs a command in that container.
When we run `docker run debian`, we didn't provide any command, so the container booted up, ran an empty command and then exited.
Well, yeah - kind of a bummer. Let's try something more exciting.