Explore >> Select a destination


You are here

blog.m5e.de
| | kbroman.org
11.3 parsecs away

Travel
| |
| | blogops.mixinet.net
9.6 parsecs away

Travel
| | When I configured forgejo-actions I used a docker-compose.yaml file to execute the runner and a dind container configured to run using privileged mode to be able to build images with it; as mentioned on my post about my setup, the use of the privileged mode is not a big issue for my use case, but reduces the overall security of the installation. On a work chat the other day someone mentioned that the GitLab documentation about using kaniko says it is no longer maintained (see the kaniko issue #3348) so we should look into alternatives for kubernetes clusters. I never liked kaniko too much, but it works without privileged mode and does not need a daemon, which is a good reason to use it, but if it is deprecated it makes sense to look into alternatives, and today I looked into some of them to use with my forgejo-actions setup. I was going to try buildah and podman but it seems that they need to adjust things on the systems running them: When I tried to use buildah inside a docker container in Ubuntu I found the problems described on the buildah issue #1901 so I moved on.Reading the podman documentation I saw that I need to export the fuse device to run it inside a container and, as I found other option, I also skipped it.
| | wejn.org
11.0 parsecs away

Travel
| | Part I of HAWA series - how to install container engine on Alpine Linux distro with ZFS.
| | dusty.phillips.codes
458.5 parsecs away

Travel
| In earlier articles, we implemented a tokenizer and parser to convert Wasm's WAT syntax into an S-expression abstract syntax tree and started to implement a transformer to convert that AST into one more suitable for generating Wasm bytecode. This article continues where we left off, building the last piece of the transformer. This piece needs to represent arbitrary instructions inside a function body, so it's going to take a bit of massaging.