Skip to content

Instantly share code, notes, and snippets.

View finnie2006's full-sized avatar
🎯
Focusing

finnie2006

🎯
Focusing
View GitHub Profile
@finnie2006
finnie2006 / k3s-installer.sh
Last active November 18, 2025 08:56
Bash script to install k3s node / worker node with option for kubernetes dashboard, interactive bash script
#!/bin/bash
# K3s Interactive Installer
# This script provides a menu-driven interface to install a k3s master or worker node,
# and to install the Kubernetes Dashboard.
# --- Colors for better readability ---
NC='\033[0m' # No Color
RED='\033[0;31m'
GREEN='\033[0;32m'
@finnie2006
finnie2006 / compose.yml
Created March 3, 2022 20:14
Adguard compose file
version: '3.3'
services:
adguardhome:
image: adguard/adguardhome
container_name: adguardhome
volumes:
- /etc/adguard/workdir:/opt/adguardhome/work
- /etc/adguard/confdir:/opt/adguardhome/conf
ports:
- 53:53/tcp