/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

paul.totterman.name
| | chipx86.blog
1.3 parsecs away

Travel
| | Here's a very quick, not exactly comprehensive tutorial on building Docker images using multiple hosts (useful for building multiple architectures). If you're an expert on docker buildx, you may know all of this already, but if you're not, hopefully you find this useful. We'll make some assumptions in this tutorial: We want to build a...
| | hjr265.me
1.0 parsecs away

Travel
| | I began the weekend writing a silly program: MGHSIAC. It's the elegant abbreviation of "My GitHub Status Is A Clock". It turns my GitHub status into a working clock. You can read more about it here. But as silly as it is, I am now committed to keep it running. I have an always-on Raspberry Pi with Portainer running on it already. If I could make a Docker image and host it on Docker Hub, I could easily pull it to that Raspberry Pi and have it continuously update my GitHub status with clock emojis and messages.
| | philiplaine.com
1.1 parsecs away

Travel
| | It has been an issue for a long time to run Docker images on multiple architectures. I remember the first time I got the idea to install Docker on my Raspberry Pi and I realized quickly that what I was trying to do would not work. The issue of course was that I was trying to use an AMD64 compiled Docker image on a ARM 32 bit CPU. Anyone who works with any lower level languages would call me an idiot for realizing this sooner than later. I would agree with them. Docker just seems to work like magic, running on most machines without any issue, like running Linux containers on Windows. One thing that has not been easy though is building Docker images on one type of CPU and running them on another.
| | www.perrotta.dev
13.9 parsecs away

Travel
| To build a docker image completely from scratch, without reusing cache layers on your system: docker build --no-cache -f Dockerfile . -t {image name}:{image tag} --platform linux/amd64