sudo docker pull thinkhy/cs162-pintossudo docker run -i -t -v [pintosSRC]/pintos:/pintos docker.io/thinkhy/cs162-pintos bashcd /pintos
./run.shsudo docker ps # find the container ID just run
sudo docker exec -t -i [ContainerID] bash
# at this point, you are in the container
cd /pintos/src/thread/build
gdb ./kernel.o
# in GDB
target remote localhost:1234
continueHappy Coding!