[Docker] Debug a Node.js Container

1. Pull the docker image

docker pull isjustintime/debug-me:latest

 

2. Run the image:

docker run -d isjustintime/debug-me

 

3. Check docker is running:

docker ps

 

4. See the docker inspect for more imformation:

docker inspect 0d8a85a50e1c

 

5. Get into container

docker exec -it 0d8a85a50e1c sh

 Inside container, you can use all linux cmds:

pwd # /usr/src/app

See what process are running

 

6. Exit container cmd

# exit

 

7. See the docker logs:

docker logs 0d8a85a50e1c

Seeing:

ReferenceError: getData is not defined

 

posted @ 2021-03-29 21:24  Zhentiw  阅读(70)  评论(0编辑  收藏  举报