Denis Machard

My technical gists

Infrastructure architect by profession but always consider himself as a developer and an open source enthusiast.
@github @mastodon @rss

Debug sur container ne démarrant pas

Quelques commandes pour debugger un container qui ne démarre pas

How to

Comment obtenir un shell dans un container?

docker exec -it <container_id> bash

Comment debugguer sur container qui démarre pas? en modifiant le entrypoint par sh ce qui permet ensuite d’exécuter à la main le script ou programme posant problème.

docker run -it  --name=<moncontainer> --entrypoint=sh <container_img>

Comment afficher les logs d’un container?

docker logs --follow <container_id>
propulsed by hugo and hugo-theme-gists