Skip to content

Instantly share code, notes, and snippets.

View azeez-ahmad's full-sized avatar
🎯
Focusing

azeez-ahmad azeez-ahmad

🎯
Focusing
View GitHub Profile
@LearnWebCode
LearnWebCode / docker-compose.yml
Created December 3, 2021 04:20
Docker compose example for YouTube WSL video.
# Use root/example as user/password credentials
version: '3.1'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
ports:
@cmendible
cmendible / kubectl_ubuntu_wsl.sh
Created November 16, 2019 22:02
Install kubectl on ubuntu (WSL) and use kubectl config from Windows
#!/bin/bash
# Receives your Windows username as only parameter.
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.16.0/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
windowsUser=$1