k9s
k9s copied to clipboard
Can k9s run in a container?
I see an image derailed/k9s in docerhub. But k9s official website doesn't give any guide to install k9s as an container. Can k9s run in a container?
Yes it can. My usage in vscode devcontainer
FROM mcr.microsoft.com/devcontainers/base:jammy
# must be amd64 or arm64
ARG TARGETARCH
...
# K9S
RUN cd /tmp && \
version=0.32.4 && \
curl -L https://github.com/derailed/k9s/releases/download/v${version}/k9s_Linux_${TARGETARCH}.tar.gz | tar xz && \
mv k9s /usr/local/bin/
...
Instructions are in the README https://github.com/derailed/k9s?tab=readme-ov-file#running-with-docker
This issue is stale because it has been open for 30 days with no activity.