Skip to content

pdevine/unibombitron

Repository files navigation

Uni-bombitron

buildx

A Minesweeper clone, built to work in your terminal.

Run on kubernetes:

kubectl run -it --rm --image=ghcr.io/pdevine/bombitron bombitron

Run on docker:

docker run -it --rm ghcr.io/pdevine/bombitron

You can size the playing field by re-sizing your terminal. The Easy, Medium, and Hard variants use the same bomb ratios as the classic Microsoft Windows 95 and Windows XP versions.

Building the image manually

Building in Kubernetes

Use BuildKit CLI for Kubectl with the command:

kubectl build -t bombitron ./

or, you can build a multi-arch image which cross-compiles for each platform. You'll need to create a registry secret in kubernetes and push to a registry to make this work correctly.

read -s REG_SECRET
kubectl create secret docker-registry mysecret --docker-server='someregistry.io' --docker-username=tifdog --docker-password=$REG_SECRET
kubectl build ./ -t someregistry.io/stuff/bombitron:latest -f Dockerfile.cross --registry-secret my-secret --platform=linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,windows/amd64 --push

Building in Docker

To build a single image in Linux:

docker build -t bombitron ./

Acknowledgements

FAQ

Q: Why does this look like crap on my Mac?
A: Use iTerm2 instead of macOS's built-in Terminal app. Terminal screws up all of the line spacing.