Exécuter l’image hello-world :
1docker run hello-world
Affiche tous les conteneurs en cours d’exécution :
1docker ps
Entrez dans un conteneur avec son ID :
1docker exec -it $containername bash
Entrez dans un conteneur Ubuntu :
1docker run -it ubuntu bash