Skip to content

Instantly share code, notes, and snippets.

View tmitchell's full-sized avatar

Taylor Mitchell tmitchell

  • BrainGu
  • Austin, TX
View GitHub Profile
@bburky
bburky / Dockerfile
Last active September 25, 2024 13:58
Environment variable access within Dockerfile RUN of rootless/unprivileged build tools
FROM alpine
RUN apk --no-cache add procps
RUN env
# The environment of RUN commands may have a few interesting extra values in
# it, but shouldn't ever have environment variables from the host environment.
# Makisu don't actually clean this environment though, so all variables are
# easily accessible here.
@superseb
superseb / rke2-commands.md
Last active April 9, 2025 14:42
RKE2 commands

RKE2 commands

  • Updated on May 29 to accommodate etcd container not having /bin/sh available anymore.

Install

curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server