Fauzeyafauzeya.hashnode.dev路Nov 17, 2024Day 20 Essential Docker Cheat Sheet for DevOps EngineersBasics CommandDescription docker --versionCheck the installed Docker version. docker infoDisplay system-wide information about Docker. Images CommandDescription docker pull <image>Download an image from Docker Hub (or a registry). d...Discuss路3 likes路39 readsDocker
David Gostindgostin.hashnode.dev路Nov 6, 2024Angular Cheat SheetHere鈥檚 an Angular cheat sheet with key commands, concepts and syntax: Basic Setup Install Angular CLI: npm install -g @angular/cli Create a New Angular Project: ng new project-name Serve the Application: ng serve Build the Application: ...DiscussAngular
Kanav Gathe90-days-of-devops-kanav.hashnode.dev路Nov 6, 2024馃惂 Linux & Git-GitHub Command Cheatsheet馃搨 Linux File System Navigation Basic Navigation CommandDescriptionExample pwdPrint working directorypwd lsList files and directoriesls -la cdChange directorycd /home/user mkdirCreate directorymkdir new_folder rmdirRemove empty directoryrm...Discuss路5 likesGit Commands
Saksham Kambleskm-saksham.hashnode.dev路Nov 6, 2024"The Ultimate Docker Cheat Sheet for DevOps: Essential Commands & Tips to Master Containers! 馃惓馃搵馃殌"Day 20: Docker for DevOps Engineers - Creating Your Ultimate Docker Cheat Sheet 馃殌馃搫 Congratulations! 馃帀 You've completed the hands-on sessions with Docker, mastering everything from building images and managing containers to configuring networks and...DiscussDevops
David Gostindgostin.hashnode.dev路Nov 5, 2024PHP Cheat SheetHere's a PHP cheat sheet covering the essentials: Basic Syntax Echo / Print: echo "Hello, World!"; print "Hello, World!"; Variables: $variable = "Hello!"; Comments: // Single-line comment # Single-line comment /* Multi-line co...DiscussPHP
David Gostindgostin.hashnode.dev路Nov 5, 2024Node.js Cheat SheetHere鈥檚 a Node.js cheat sheet with common commands and snippets to help you with various tasks: Basic Setup Initialize a New Project: npm init -y Install a Package: npm install package_name Install a Package Globally: npm install -g packag...DiscussNode.js
David Gostindgostin.hashnode.dev路Nov 5, 2024MySQL Cheat SheetHere's a MySQL cheat sheet to help you quickly reference common commands and functions: MySQL Basics Connect to MySQL: mysql -u username -p Select a Database: USE database_name; List Databases: SHOW DATABASES; List Tables: SHOW TABLES...DiscussMySQL
Wojciechwoja.hashnode.dev路Nov 5, 2024OpenShift Cheat Sheet馃挕 Most commands from Kubernetes Cheat Sheet are also usable here This cheat sheet summarizes my commonly used OpenShift commands, I will update that periodically. oc login # login to the OpenShift cluster oc project <project-name> # switch to a sp...DiscussTips And Tricksopenshift
Wojciechwoja.hashnode.dev路Nov 5, 2024Kubernetes Cheat Sheet馃挕 Most commands used here are also usable in OpenShift This cheat sheet summarizes my most commonly used Kubernetes commands, and I will update it periodically. Prepare prompt #! ~/.bashrc export KUBE_EDITOR="nano" # change default editor to nano...DiscussTips And TricksKubernetes
Wojciechwoja.hashnode.dev路Nov 5, 2024Git Cheat SheetThis cheat sheet summarizes my most commonly used git commands, and I will update it periodically. Initialize git config --global user.name "Name Username" git config --global user.email name@example.com I rarely initialize a repo locally, so I don'...DiscussTips And TricksGit