This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# k9s.sh | |
curl -sS https://webi.sh/k9s | sh | |
export TERM=xterm-256color | |
ll /root/.local/bin/k9s | |
# run the below command for finish | |
source ~/.config/envman/PATH.env | |
# test | |
k9s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# USAGE: | |
# | |
# # Build tetris image | |
# docker build -t tetris . | |
# | |
# docker run -it tetris | |
# | |
# Base docker image | |
FROM alpine:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update the package manager | |
sudo apt-get update | |
# Install dependencies | |
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg lsb-release | |
# Add Docker’s official GPG key | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg |