
This is a crosspost from adventofdocker.com
Today we are going to start with the installation of Docker and run our first container! This blog pos...
For further actions, you may consider blocking this person and/or reporting abuse
Sorry, what do you mean?
fantastic
Thanks!
Usually if i get chocolade-calendar - i'll open all doors in the same day :D
i create the image successfully, but when i run it, it's run and give the cotainer id, but when i type 'docker ps' it doesnt show in the table, why?
Try
docker ps -a
the container is exiting immediately (thats on purpose).
docker ps
only shows running containers,docker ps --all
ordocker ps -a
shows all of them. Thats why you only see it with the all flag! You can see the documentation withdocker ps --help
, there you see the explanation:)Good one
This will be fun!
I hope so!:D Anything specific you want to learn?
i mean i can see that container in the 'docker ps -a' only