Questions et réponses d'entretien les plus demandées et tests en ligne
Plateforme d'apprentissage pour la preparation aux entretiens, les tests en ligne, les tutoriels et la pratique en direct

Developpez vos competences grace a des parcours cibles, des tests blancs et un contenu pret pour l'entretien.

WithoutBook rassemble des questions d'entretien par sujet, des tests pratiques en ligne, des tutoriels et des guides de comparaison dans un espace d'apprentissage reactif.

Preparation a l'entretien

Docker Questions et reponses d'entretien

Question 11. Explain the difference between Docker containers and virtual machines.

Docker containers share the host OS kernel, making them more lightweight and faster than virtual machines. VMs, on the other hand, run a full OS, leading to higher resource overhead.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 12. What is the purpose of the ENTRYPOINT instruction in a Dockerfile?

The ENTRYPOINT instruction sets the command that will be executed when a container is run. It provides the default executable for the container and can be overridden at runtime.

Example:

ENTRYPOINT ["/usr/bin/myapp"]

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 13. How do you check the logs of a running Docker container?

You can use the `docker logs` command followed by the container ID or name to view the logs of a running container.

Example:

docker logs container_name

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 14. What is the purpose of Docker Hub?

Docker Hub is a cloud-based registry service that allows developers to share and distribute Docker images. It serves as a central repository for Docker images.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 15. Explain the concept of Docker Networking.

Docker Networking enables communication between containers and external networks. It provides various network drivers, such as bridge, host, overlay, and macvlan.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Les plus utiles selon les utilisateurs :

Copyright © 2026, WithoutBook.