<aside>
đź’ˇ
A list of instances where I needed someone’s help to debug. Logging it here so I can act on them myself in the future.
</aside>
Nov 1, 2024
- You can pull down a image to run locally in docker if you want to investigate stuff about the image. Use
docker pull <image_url>
and then something like docker run <image_url> bash
Sep 22, 2024
- Ran unit tests on an app I was working on and got a failure due to an s3 exception. I was confused where this was from because I was on main, and on Github main had been passing CI. I was stuck at this step here, and turned to help.
- My senior showed me the solution. I got an s3 exception? Well, how are we calling S3 in our app? Well, we must connect to cloud storage. How are we connecting to cloud storage? Oh, it’s a local cloud storage instance spun up from Docker. Oh, but your Docker daemon isn’t running, so that’s why it can’t spin up the Object Store Container.
- Lesson: ask yourself, where could this exception be coming from?
Sep 21, 2024
- Was in a lab and couldn’t get the ping to work.
- I spun up 3 services and they were inter-pinging one another. Inspecting logs clearly showed the issue:
**[dassamongkol.dassamongkol_5c6f5a]> docker-compose logs iam-local**
- Lesson: check logs of for error.
Sep 19, 2024