-
Notifications
You must be signed in to change notification settings - Fork 1
X. Debugging
Berit edited this page Nov 14, 2023
·
1 revision
If all containers are running via docker-compose, it is not possible to interact with the debug shell. Therefore, you need to do the following:
-
docker ps
to list all running containers docker rm -f name_of_server_container
docker-compose run --rm --service-ports server
After that, if you place a breakpoint()
anywhere in the code, you can step through and inspect values of variables.