Docker by raghav pal

Docker by raghav pal смотреть последние обновления за сегодня на .

Docker Beginner Tutorial 1 - What is DOCKER (step by step) | Docker Introduction | Docker basics

836141
9619
741
00:06:01
16.05.2017

FREE Tutorials - 🤍 Hi I am Raghav & Today we will learn: What is Docker ? Docker is the world’s leading software container platform Docker makes the process of application deployment very easy and efficient and resolves a lot of issues related to deploying applications Docker is a tool designed to make it easier to deploy and run applications by using containers Docker gives you a standard way of packaging your application with all its dependencies in a container Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. Understand Docker with analogy of the Shipping industry How a real world problem was resolved using container _ #WhatIsDocker #DockerForDevOps #DockerBasicCommands #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 ONLINE COURSES TO LEARN Visit - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 FOLLOW Youtube - 🤍 Like, Subscribe & Share You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping 🤍 or any animal welfare group near you Never Stop Learning Raghav

How to setup and use Docker on Free AWS Linux | Complete beginners hands-on in 7 Steps

2855
66
4
00:18:06
14.03.2023

🔥 All Free Tutorials - 🤍 2nd Part 🤍 SETUP Step 1 - Create an account on AWS and login to your account Step 2 - Launch a AWS Linux EC2 Instance and connect to your AWS Instance - 🤍 Check linux information cat /etc/*-release rpm -E %{rhel} Step 3 - Install Docker sudo yum update -y sudo amazon-linux-extras install docker sudo docker version Step 4 - Start Docker service - sudo service docker start Step 5 - Check Docker is running - sudo docker info Step 6 - Add the "ec2-user" to the docker group so you can run Docker commands without using sudo: sudo usermod -aG docker ec2-user Exit and reconnect to the instance for this to take effect logout Step 7 - Test your Docker installation - Run hello-world container - docker run hello-world USING DOCKER COMMANDS Pull image docker pull nginx Run docker container using the image docker run -d -p 80:80 nginx The "-d" flag runs the container in detached mode, and the "-p" flag maps port 80 on the container to port 80 on the host List running docker containers docker ps List all docker containers docker ps -a Stop all containers docker stop $(docker ps -a -q) Remove all containers docker rm $(docker ps -a -q) List all docker images docker images Remove all docker images docker rmi $(docker images -q) Remove all unused Docker resources docker system prune Stop docker sudo service docker stop ▬▬▬▬▬▬▬ Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can Never Stop Learning Raghav Pal ▬▬▬▬ USEFUL LINKS ▬▬▬▬ Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMeter Beginner - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 ▬▬ BUILD TOOLS ▬▬ Maven - 🤍 Gradle - 🤍 ▬▬ DATA FORMATS ▬▬ JSON - 🤍 XML - 🤍 ▬▬ OTHERS ▬▬ Virtualization on Windows - 🤍 Mock Interviews - 🤍 Redis - 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday - 🤍 Sunday Special - 🤍 Docker tutorial for AWS beginners How to deploy Docker on AWS Linux for free Step-by-step guide to setting up Docker on AWS Learn how to run Docker on an AWS EC2 instance Using Docker on AWS - a comprehensive guide Docker for AWS - a beginner's guide AWS + Docker: Building a powerful cloud infrastructure How to use Docker to simplify application deployment on AWS Docker on AWS - Tips, tricks, and best practices Getting started with Docker on AWS - a practical walkthrough —

Docker Beginner Tutorial 4 - Play With Docker

164205
890
49
00:01:46
08.02.2019

🤍 Website - 🤍 Hi, I am Raghav JOIN me on this educational journey as a member and get exclusive perks - Click the JOIN button 🤍 ONLINE COURSES TO LEARN UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 Website - 🤍 Udemy Courses - 🤍 Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

What is Docker Compose | How to create docker compose file | How to use Compose

408947
5324
635
00:18:23
09.07.2018

Free Tutorials - 🤍 I am Raghav & Today we will learn : 1. What | Why - Docker Compose 2. How to install 3. How to create docker compose file 4. How to use docker compose file to create services 5. Basic Commands TIPS Docker compose : tool for defining & running multi-container docker applications : use yaml files to configure application services (docker-compose.yml) : can start all services with a single command : docker compose up : can stop all services with a single command : docker compose down : can scale up selected services when required Step 1 : install docker compose (already installed on windows and mac with docker) docker-compose -v 2 Ways 1. 🤍 2. Using PIP pip install -U docker-compose Step 2 : Create docker compose file at any location on your system docker-compose.yml Step 3 : Check the validity of file by command docker-compose config Step 4 : Run docker-compose.yml file by command docker-compose up -d Steps 5 : Bring down application by command docker-compose down TIPS How to scale services —scale docker-compose up -d scale database=4 References: 🤍 🤍 🤍 🤍 _ #DockerCompose #DockerComposeIntroduction #DockerContainers #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 Follow Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav

Docker Beginner Tutorial 2 - How DOCKER works | Docker Architecture

388615
3529
204
00:04:20
17.05.2017

more about Raghav - 🤍 Today we will learn: How Docker works ? Understand a general workflow of docker Difference between virtualization and containerization Understand docker client server architecture Understand: Docker file Docker images Docker Containers Docker Hub / Registry Docker client Docker server / daemon Docker engine #HowDockerWorks #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 ONLINE COURSES TO LEARN Visit - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 FOLLOW Youtube - 🤍 Like, Subscribe & Share You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping 🤍 or any animal welfare group near you. Never Stop Learning Raghav

Katalon Studio Docker Linux Jenkinsfile Pipeline Demo with Examples and practical | Raghav Pal

5066
110
43
01:25:33
12.07.2022

All FREE courses - 🤍 Katalon Studio - CI CD DevOps with Docker 00:00 Introduction & Topics 01:54 Setup Linux 06:17 Connect to a Linux System 09:58 Install Java on Linux 13:35 Install Jenkins on Linux 22:33 Install Git on Linux 23:48 Jenkinsfile 32:46 Get Jenkinsfile from Git SCM and run on Jenkins 41:09 Clone SCM Repository using Jenkinsfile 46:45 Docker on Linux 54:30 Get Katalon Docker Image 01:02:28 Run tests on Katalon Docker Container 01:08:26 Run tests on Katalon Docker Container from Jenkins Job 01:13:05 Run tests on Katalon Docker Container using Jenkinsfile Pipeline 01:19:39 Add Jenkinsfile in Katalon Studio Project #KatalonStudioDevOps Create AWS Linux machine and Connect to the Linux OS 🤍 Create AWS Linux machine Connect to Linux OS from Mac Connect to Linux OS from Windows Step 1 - Create an account on aws.amazon.com and login to the account Step 2 - Goto EC2 service and select Launch Instance Step 3 - Select the name, OS, type, volume, security groups etc and Launch Instance Step 4 - Ensure you have created a key value pair and downloaded the .pem file Step 5 - Once the system is up connect to the linux system From Mac Step 1 - Open terminal and run command chmod 400 “location of pem file” Step 2 - On aws ec2 page select the machine and click on connect Step 3 - From the connection options select A standalone SSH client and copy the command Step 4 - Run the command from the terminal and connect to the Linux system ssh -i "LinuxMachine.pem" ec2-user🤍ec2-34-234-95-124.compute-1.amazonaws.com From Windows Step 1 - Download putty installer from 🤍 Step 2 - Run the installer and install putty Step 3 - Convert your private .pem key to .ppk using PuTTYgen PuTTY does not natively support the PEM format for SSH keys PuTTY provides a tool named PuTTYgen, which converts PEM keys to the required PPK format for PuTTY 🤍 1. From the Start menu, choose All Programs, PuTTY, PuTTYgen. 2. Under Type of key to generate, choose RSA. If your version of PuTTYgen does not include this option, choose SSH-2 RSA 3. Choose Load. By default, PuTTYgen displays only files with the extension .ppk. To locate your .pem file, choose the option to display files of all types 4. Select your .pem file for the key pair that you specified when you launched your instance and choose Open. PuTTYgen displays a notice that the .pem file was successfully imported. Choose OK 5. To save the key in the format that PuTTY can use, choose Save private key. PuTTYgen displays a warning about saving the key without a passphrase. Choose Yes 6. Specify the same name for the key that you used for the key pair (for example, my-key-pair) and choose Save. PuTTY automatically adds the .ppk file extension. Step 4 - Connect to Linux instance using Putty Java on Linux Step 1 - Connect to linux system Step 2 - Check Java version java -version Step 3 - Update all packages - sudo yum update Step 4 - Install java - java 8 - sudo yum install java-1.8.0-openjdk java 11 - sudo amazon-linux-extras install java-openjdk11 Info: You can install multiple java versions and can switch to select a specific version using command sudo alternatives config java If you get Permission Denied You need to either sudo the command, or change the permissions (chmod) for the /var/lib/alternatives directory and eventually create it if it does not exist Step 5 - Check Java version java -version Jenkins on Linux Install Git on AWS Linux Jenkinsfile Create & Run Jenkinsfile How to get Jenkinsfile from SCM and run in a Jenkins Job How to clone a SCM Repo using Jenkinsfile Docker on Linux Get Katalon Docker Image and Run Katalon Tests Run Tests on Docker Container from Jenkins Job Run Tests on Katalon Docker Container using Jenkinsfile Pipeline Script All Notes - 🤍 Stories by Raghav - 🤍 My Udemy Courses - 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can Never Stop Learning Raghav

What is Dockerfile | How to create and build Dockerfile | Dockerfile Basic Commands

569944
7049
676
00:10:10
09.07.2018

All FREE courses - 🤍 Today we will learn : 1. What is Dockerfile 2. How to create Dockerfile 3. How to build image from Dockerfile 4. Basic Commands TIPS & TRICKS Dockerfile : A text file with instructions to build image Automation of Docker Image Creation FROM RUN CMD Step 1 : Create a file named Dockerfile Step 2 : Add instructions in Dockerfile Step 3 : Build dockerfile to create image Step 4 : Run image to create container COMMANDS : docker build : docker build -t ImageName:Tag directoryOfDocekrfile : docker run image References: 🤍 🤍 🤍 _ #DockerImages #DockerContainers #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 _ ONLINE COURSES TO LEARN Visit - 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. Follow Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav

Docker Beginner Tutorial 5 - How to install DOCKER on LINUX ? Step by Step

373756
3238
367
00:08:38
19.05.2017

sudo pacman -S docker sudo usermod -aG docker $USER Prerequisite OS should be 64 bit Linux kernel ver 3.10 or greater command to check : uname -r STEP 1 - Connect to Linux system STEP 2 - Install DOCKER sudo yum -y update sudo yum install -y docker docker docker version STEP 3 - start DOCKER sudo service docker start sudo usermod -a -G docker "user" docker info docker run hello-world : to run hello-world image docker images : to get list of images present locally docker ps : to get list of running containers docker ps -a . : to get list of all containers STEP 4 - stop DOCKER sudo service docker stop uninstall DOCKER sudo yum remove docker HELPFUL TIPS You can visit - 🤍 for more installation related help To install docker from binaries 🤍 Installation steps for amazon ec2 🤍 References: Linux free instance - 🤍 Docker Manuals - 🤍 🤍 🤍 🤍 #DockerOnLinux #DockerInstallation #HowToInstallDocker #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 ONLINE COURSES TO LEARN Visit - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 FOLLOW Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

Docker Beginner Tutorial 8 - Basic Commands | Docker FAQ | Docker Interview Questions |

233960
2435
287
00:17:25
02.07.2018

FREE courses - 🤍 Docker Basic Commands Step by Step for Beginners Basic : docker version : docker -v : docker info : docker help : docker login ———————————— Images : docker images : docker pull : docker rmi ———————————— Containers : docker ps : docker run : docker start : docker stop ———————————— System : docker stats : docker system df : docker system prune References - 🤍 🤍 _ #DockerBasicCommands #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ONLINE COURSES TO LEARN Visit - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 Follow Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

What is Docker Volume | How to create Volumes | What is Bind Mount | Docker Storage

279345
4239
591
00:16:51
10.07.2018

11:26 Bind mount More about Raghav - 🤍 Today we will learn: 1. What are Volumes 2. How to create / list / delete volumes 3. How to attach volume to a container 4. How to share volume among containers 5. What are bind mounts Volumes are the preferred mechanism for persisting data generated by and used by Docker containers : docker volume //get information : docker volume create : docker volume ls : docker volume inspect : docker volume rm : docker volume prune Instead of deleting containers one by one of docker ps -a , we can use docker container prune. and for docker ps (running containers) we can use docker rm $(ps -aq) Use of Volumes = Decoupling container from storage Share volume (storage/data) among different containers Attach volume to container On deleting container volume does not delete Commands docker run name MyJenkins1 -v myvol1:/var/jenkins_home -p 8080:8080 -p 50000:50000 jenkins docker run name MyJenkins2 -v myvol1:/var/jenkins_home -p 9090:8080 -p 60000:50000 jenkins docker run name MyJenkins3 -v /Users/raghav/Desktop/Jenkins_Home:/var/jenkins_home -p 9191:8080 -p 40000:50000 jenkins References 🤍 🤍 NOTES By default all files created inside a container are stored on a writable container layer The data doesn’t persist when that container is no longer running A container’s writable layer is tightly coupled to the host machine where the container is running. You can’t easily move the data somewhere else. Docker has two options for containers to store files in the host machine so that the files are persisted even after the container stops VOLUMES and BIND MOUNTS Volumes are stored in a part of the host filesystem which is managed by Docker Non-Docker processes should not modify this part of the filesystem Bind mounts may be stored anywhere on the host system Non-Docker processes on the Docker host or a Docker container can modify them at any time In Bind Mounts, the file or directory is referenced by its full path on the host machine.  Volumes are the best way to persist data in Docker volumes are managed by Docker and are isolated from the core functionality of the host machine A given volume can be mounted into multiple containers simultaneously. When no running container is using a volume, the volume is still available to Docker and is not removed automatically. You can remove unused volumes using docker volume prune. When you mount a volume, it may be named or anonymous.  Anonymous volumes are not given an explicit name when they are first mounted into a container Volumes also support the use of volume drivers, which allow you to store your data on remote hosts or cloud providers, among other possibilities. #DockerVolume #DockerBindMount #DockerContainers #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ONLINE COURSES TO LEARN Visit - 🤍 Follow Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav

TestProject Tutorial 17 | How to run TestProject tests from Docker - Part 1

6128
81
37
00:19:37
22.09.2020

TestProject - 🤍 FREE - 🤍 Notes: Prerequisite - What is Docker Introduction - Why do we need TestProject Agent on Docker Docker Setup - Download and Install How to start TestProject agent on Docker How to run tests on Docker agent References & Links: 🤍 🤍 🤍 Docker is a platform that enables to build, share and run application or services in isolated containers In order to run test you need an agent Agent is a powerful wrapper for Selenium and Appium Once you install and start agent, can run tests on all browsers and devices connected on that system Agent contains all drivers and configurations setup for selenium and appium *Why do we need TestProject Agent on Docker* Flexible - Can setup and run agent anytime - quickly and easily Can use a single command to setup a Docker container with required browsers and TestProject agent Can create a container when required and remove after execution Can use permanent or temporary (ephemeral) docker containers No need of physical machines with separate OS, browsers etc Saves resource, time & cost Integrates well with CI/CD workflow How to download and install Docker 🤍 🤍 How to start TestProject agent on Docker Step 1 - Install Docker Step 2 - Setup TestProject Agent in Docker Permanent 1 - Create and Copy API Key from your TestProject Account Integration - API - Create API 2 - Open Terminal and run the command docker run name testproject-agent -e TP_API_KEY="Your API Key" -e TP_AGENT_ALIAS="My First Agent" -v “location of local host folder”:/var/testproject/agent testproject/agent:latest Ephemeral 1 - Create and Copy API Key from your TestProject Account 2 - Copy the JOB ID 3 - Run the command docker run rm -e TP_API_KEY="REPLACE_WITH_YOUR_KEY" -e TP_JOB_ID="REPLACE_WITH_YOUR_JOB_ID" testproject/agent:latest Using Docker Compose to create multi-container service for Test Execution Step 1 - Install Docker Step 2 - Create a YAML file as shown Step 3 - Update the API Key, Job ID and local volume path Step 4 - Run the command docker compose -f “filename” up -d DOCKER COMMANDS docker -v docker version docker version docker info docker ps -a -q list all container id docker stop $(docker ps -a -q) docker system prune You can support by Joining Automation Step By Step channel: 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. ONLINE COURSES TO LEARN 🤍 Udemy Discounts - 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 Never Stop Learning Raghav

Docker Tutorial for Beginners [FULL COURSE in 3 Hours]

4048463
74772
3906
02:46:15
21.10.2020

Full Docker Tutorial | Complete Docker Course | Hands-on course with a lot of demos and explaining the concepts behind, so that you really understand it. 💙 Become a Kubernetes Administrator - CKA: 🤍 💚 Become a DevOps Engineer - full educational program: 🤍 🧡 Udemy courses: 🤍 ► Follow me on IG for behind the scenes content: 👉🏼 🤍 #docker #dockertutorial #techworldwithnana By the end, you will have a deep understanding of the concepts and a great overall big picture of how Docker is used in the whole software development process. The course is a mix of animated theoretic explanation and hands-on demo’s to follow along, so you get your first hands-on experience with Docker and feel more confident using it in your project. ▬▬▬▬▬▬ T I M E S T A M P S ⏰ ▬▬▬▬▬▬ 0:00 - Intro and Course Overview 01:58 - What is Docker? 10:56 - What is a Container? 19:40 - Docker vs Virtual Machine 23:53 - Docker Installation 42:02 - Main Docker Commands 57:15 - Debugging a Container 1:06:39 - Demo Project Overview - Docker in Practice 1:10:08 - Developing with Containers 1:29:49 - Docker Compose - Running multiple services 1:42:02 - Dockerfile - Building our own Docker Image 2:04:36 - Private Docker Repository - Pushing our built Docker Image into a private Registry on AWS 2:19:06 - Deploy our containerized app 2:27:26 - Docker Volumes - Persist data in Docker 2:33:03 - Volumes Demo - Configure persistence for our demo project 2:45:13 - Wrap Up 🔗 Links ► Developing with Containers - Demo project: 🤍 🚀 1. What is Docker? ► What is a container and what problems does it solve? ► Container repository - where do containers live? 🚀 2. What is a Container technically ► What is a container technically? (layers of images) ► Demo part (docker hub and run a docker container locally) 🚀 3. Docker vs Virtual Machine 🚀 4. Docker Installation ► Before Installing Docker - prerequisites ► Install docker on Mac, Windows, Linux ❗️ Note: Docker Toolbox has been deprecated. Please use Docker Desktop instead. See for Mac (🤍 and for Windows (🤍 🚀 5. Main Docker Commands ► docker pull, docker run, docker ps, docker stop, docker start, port mapping 🚀 6. Debugging a Container ► docker logs, docker exec -it 🚀 7. Demo Project Overview - Docker in Practice (Nodejs App with MongoDB and MongoExpress UI) 🚀 8. Developing with Containers ► JavaScript App (HTML, JavaScript Frontend, Node.js Backend) ► MongoDB and Mongo Express Set-Up with Docker ► Docker Network concept and demo 🚀 9. Docker Compose - Running multiple services ► What is Docker Compose? ► How to use it - Create the Docker Compose File ► Docker Networking in Docker Compose 🚀 10. Dockerfile - Building our own Docker Image ► What is a Dockerfile? ► Create the Dockerfile ► Build an image with Dockerfile 🚀 11. Private Docker Repository - Pushing our built Docker Image into a private Registry on AWS ► Private Repository on AWS ECR ► docker login ► docker tag ► Push Docker Image to the Private Repo 🚀 12. Deploy our containerized application 🚀 13. Docker Volumes - Persist data in Docker ► When do we need Docker Volumes? ► What is Docker Volumes? ► Docker Volumes Types 🚀 14. Volumes Demo - Configure persistence for our demo project ▬▬▬▬▬▬ Want to learn more? 🚀 ▬▬▬▬▬▬ DevOps Tools, like GitHub Actions, Terraform ► 🤍 Jenkins Pipeline Tutorials ► 🤍 Full Kubernetes tutorial ► 🤍 ▬▬▬▬▬▬ Connect with me 👋 ▬▬▬▬▬▬ Join private FB group ► 🤍 INSTAGRAM ► 🤍 TWITTER ► 🤍 LINKEDIN ► 🤍 ▬▬▬▬▬▬ Courses & Bootcamp & Ebooks 🚀 ▬▬▬▬▬▬ ► Become a DevOps Engineer - full educational program 👉🏼 🤍 ► High-Quality and Hands-On Courses 👉🏼 🤍 ► Kubernetes 101 - compact and easy-to-read ebook bundle 👉🏼 🤍

Docker Beginner Tutorial 6 - How to install DOCKER on WINDOWS ? Step by Step

375579
2597
530
00:10:54
25.05.2017

Docker Toolbox releases - 🤍 FREE Tutorials - 🤍 Docker Toolbox GitHub - 🤍 There is a deployment template on the Azure marketplace, if you want to setup Docker Engine on Windows in Azure. Very easy install : 🤍 Watch Docker Playlist: 🤍 How to Create a Boot2Docker virtual machine locally on your Windows machine using Hyper-V - 🤍 Like on Facebook : 🤍 Follow on Twitter: 🤍 Subscribe on Youtube : 🤍 _ VIDEO DESCRIPTION Today we will learn : How to install Docker on Windows Step by Step We will see: Prerequisites Install Docker Troubleshooting tips Validate installation Uninstall Docker USEFUL INFORMATION If you install the Docker Toolbox on a Windows machine, the installer automatically installs Oracle Virtualbox to run the Docker virtual machine. Prerequisites OS - 64 bit Windows 7 or higher STEP 1 : Install Docker 🤍 🤍 STEP 2 : Troubleshooting (if any issue occurs) Convenient way to enable/disable Hyper-V 🤍 Installing Docker Toolbox on Windows with Hyper-V Installed 🤍 STEP 3 : validate INSTALLATION run some docker commands docker docker version docker run "image name" STEP 4 : uninstall DOCKER USEFUL LINKS 🤍 🤍 References : Image of docker architecture References - 🤍 #DockerOnWindows #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 ONLINE COURSES TO LEARN UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 FOLLOW Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav

Docker Interview Questions - Part 1

78676
968
84
00:12:15
06.07.2018

Free Docker tutorial - 🤍 Today we will learn: What is Docker How Docker works Difference between Virtualization & Containerization Explain Docker Architecture Advantages of using Docker What are Docker Images What are Docker Containers What is Dockerfile What is Docker Compose References 🤍 🤍 🤍 🤍 #DockerInterviewQuestions #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ONLINE COURSES TO LEARN Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

Docker tutorial for Beginners

172193
3197
105
01:30:31
16.07.2020

What is docker? Docker setup? 00:00:00 - Intro 00:00:10 - What is Docker? 00:10:23 - Docker on Linux 00:24:49 - Docker on Windows 00:31:04 - Ubuntu on Docker 00:39:54 - Docker Architecture 00:45:16 - Creating App on Docker 01:12:14 - Dockerize App #docker #container

Docker Beginner Tutorial 3 - Benefits of DOCKER | Why to use DOCKER | Advantages of DOCKER

269211
1795
101
00:02:46
18.05.2017

Today we will learn: Benefits of using Docker Build app only once No worries that the application will not perform the same way it did on testing env Portability Version Control Isolation Productivity Docker simplifies DevOps #AdvantagesOfDocker #BenefitsOfDocker #WhyUseDocker #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 ONLINE COURSES TO LEARN Visit - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 FOLLOW Youtube - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

Kubernetes Beginner Tutorial 1 | Introduction and Getting Started

184997
2785
262
00:07:33
24.10.2019

FREE Courses - 🤍 Notes: What is Kubernetes What is Container Orchestration Engine Why do we need Kubernetes Kubernetes is the Greek word for helmsman or captain of a ship Kubernetes is also referred to as k8s, as there are 8 characters between k and s container management (orchestration) tool developed by Google lab (& later donated to CNCF) open source written on Golang also called K8s Container Management / Orchestration tool Container Orchestration tool or engine automates deploying, scaling and managing the containerized application on a group of servers e.g. Kubernetes Docker Swarm Apache Mesos Marathon Docker is a tool designed to make it easier to deploy and run applications by using containers Organizations have to use multiple containers to Ensure availability Load balancing Scale-up and down based on user load deploying scheduling scaling load balancing batch execution rollbacks monitoring Udemy Discounts - 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Appium - 🤍 Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 GitLab - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 JAVASCRIPT - 🤍 IDE Visual Studio Code - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 Keep Learning, Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Facebook - 🤍 Twitter - 🤍 Youtube - 🤍 Instagram - 🤍 You can support my mission for education by sharing this knowledge and helping as many people as you can.

Docker Interview Questions - Part 2

43021
711
140
00:12:39
10.07.2018

more about Raghav - 🤍 Today we will learn: Part 1 = What is Docker How Docker works Difference between Virtualization & Containerization Explain Docker Architecture Advantages of using Docker Part 2 = What are Docker Images What are Docker Containers What is Dockerfile What is Docker Compose References 🤍 🤍 🤍 🤍 🤍 #DockerInterviewQuestions #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ONLINE COURSES TO LEARN Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

Docker Beginner Tutorial 7 - How to install DOCKER on MAC ? Step by Step | How to Install Docker

143888
651
91
00:11:45
07.06.2017

Today we will learn : How to install Docker on MacOS Prerequisites Docker - Mac OS Yosemite 10.10.3 or above Docker Toolbox - mac OS 10.8 “Mountain Lion” or newer STEP 1 Install DOCKER STEP 2 validate INSTALLATION run some docker commands STEP 3 uninstall DOCKER References: 🤍 🤍 🤍 🤍 🤍 🤍 _ #DockerOnMac #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners DOCKER PLAYLIST 🤍 YOUTUBE PLAYLIST 🤍 YOUTUBE 🤍 FACEBOOK 🤍 TWITTER 🤍 If you like videos on the channel Automation Step by Step, hit the like button and share with others. Click the SUBSCRIBE button and hit the bell icon to keep getting new videos. ONLINE COURSES TO LEARN Visit - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 JAVA Java Beginners - 🤍 Java Tips & Tricks - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav- 🤍 Interviews - 🤍 All Playlists - 🤍 Share your knowledge with everyone and, Never Stop Learning Raghav 🤍

Part-5 |SDET Essentials | Docker with Chrome & Firefox Images for Selenium Tests

38907
385
50
00:27:01
05.08.2019

DOCKER Commands for Selenium (Steps) Selenium docker Page: 🤍 Display Docker version: docker –version Display containers are running on the machine: docker ps Pull the docker images from Docker Hub Selenium Standalone with Chrome docker pull selenium/standalone-chrome:latest Selenium Standalone with Firefox docker pull selenium/standalone-firefox:latest Displays images pulled into system docker images Creating container by using image: docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:latest docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:latest #sdetessentials #docker - Udemy Courses: - Manual Testing+Agile with Jira Tool 🤍 Selenium with Java+Cucumber 🤍 Selenium with Python & PyTest 🤍 Selenium with python using Robot framework 🤍 API Testing(Postman, RestAssured & SoapUI) 🤍 Web Automation using Cypress with Javascript 🤍 Jmeter-Performance Testing 🤍 SDET Essencials(Full Stack QA) 🤍 Appium-Mobile Automation Testing 🤍 Java Collections 🤍 Java Programming 🤍 Cucumber BDD Framework 🤍 Protractor with Javascript 🤍

What is Docker? Docker container concept explained || Docker Tutorial 1

221826
4302
135
00:10:44
11.10.2019

What is Docker? What is a Docker container? Understand why Docker is used and what problems do containers solve for the development process and deployment process? ► Subscribe to me on Youtube: 🤍 C o n t a i n e r C o n c e p t e x p l a i n e d Docker is becoming more and more popular and seems like every company is now turning to it to make the development and deployment process more efficient. The reason is that docker solves some common problems that have been around for quite a while in software development. In this video I talk about container concepts and the above mentioned popular implementation called Docker. You will learn about what a container is, what problems it solves, how containers make the development process much easier and also how they solve some of the problems in the deployment process. ▬▬▬▬▬▬ T I M E S T A M P S ⏰ ▬▬▬▬▬▬ 0:00 - Intro 1:05 - What is a container and what problems does it solve? 1:50 - Container repository - where do containers live? 3:38 - Application development - before/after container 7:15 - Application deployment - before/after container ►► Full Docker and Kubernetes Tutorial Playlist: 🤍 This video is the ❶ of a complete series for beginners, where I explain the basic concepts and also show you demo's like deploying your containerized application. At the end of this tutorial you will fully understand Docker and Kubernetes. 💡 Only interested in Docker? ►► Complete Docker Tutorial Playlist: 🤍 #docker #whatisdocker #dockertutorials #devops #techworldwithnana - The complete step-by-step guide to Docker and Kubernetes will include the following content: 🐳 D O C K E R - Container concept - Why docker? (image vs. traditional DevOps) - Install docker on different operating systems - 8 basic commands you need to know - Docker vs. Virtual Machine - Docker in Practice: Overview of whole development process with Docker (development, continuous delivery, deployment) - Develop an application with Docker - Docker Compose - Dockerfile - Private Repository - Deploying your containerized application - Docker Volumes from theory to practice ✵ K U B E R N E T E S - Main Kubernetes components (including Pod, Service, Ingress, Volumes, ConfigMap, Secrets, Deployment, StatefulSet) - Kubernetes architecture for beginners (master, slave nodes & processes) - Understand how does K8s REALLY work? Main Concepts of how to use K8s - Minikube, Kubectl - set up the cluster and connect to it - Kubectl main commands - Demo - Configuration file (YAML) - syntax - Kubernetes Namespaces - Communication between the pods - basic networking concepts in Kubernetes - K8s Deployment in practice - example application deployment (pod + service + Ingress + secret) ▬▬▬▬▬▬ Courses & Bootcamp & Ebooks 🚀 ▬▬▬▬▬▬ ► Become a DevOps Engineer - full educational program 👉🏼 🤍 ► High-Quality and Hands-On Courses 👉🏼 🤍 ► Kubernetes 101 - compact and easy-to-read ebook bundle 👉🏼 🤍 ▬▬▬▬▬▬ Connect with me 👋 ▬▬▬▬▬▬ Join private Facebook group ► 🤍 Don't forget to subscribe ► 🤍 DEV ► 🤍 INSTAGRAM ► 🤍 TWITTER ► 🤍 LINKEDIN ► 🤍 Legal Notice: Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries. Docker, Inc. and other parties may also have trademark rights in other terms used herein. This video is not accredited, certified, affiliated with, nor endorsed by Docker, Inc.

Docker Volumes explained in 6 minutes

207243
7659
312
00:06:03
30.11.2019

Understand Docker Volumes in 6 minutes. Docker Volumes in Docker-Compose ► Subscribe To Me On Youtube: 🤍 In this video you will learn: 0:00 - Intro 0:21 - When do we need Docker Volumes? 1:02 - What is Docker Volumes? 2:04 - 3 Docker Volumes Types 4:14 - Docker Volumes in docker-compose file This gives you a short but thorough understanding what Docker Volumes are. ⭐️ For a Demo please refer to 🤍 For any questions/issues/feedback, please leave me a comment and I will get back to you as soon as possible. #devops #techworldwithnana #docker #dockertutorials - ✅ Follow me on Youtube: 🤍 on DEV: 🤍 on Instagram: 🤍 on Twitter: 🤍 on Tumblr: 🤍 Legal Notice: Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries. Docker, Inc. and other parties may also have trademark rights in other terms used herein. This video is not accredited, certified, affiliated with, nor endorsed by Docker, Inc.

#AskRaghav | What is Blue-Green Deployment | How it works

1931
69
11
00:06:57
06.10.2022

▬▬ ALL FREE COURSES ► 🤍 ▬▬ ASK RAGHAV ► 🤍 00:00 *Intro* 00:23 *Real world example* 01:59 *What is Blue-Green deployment* 02:48 *How it works* 04:11 *How it helps* 05:20 *How to keep data in sync during blue-green deployment* 06:00 *Summary* Blue-Green Deployment is a DevOps release management process Reduces downtime and risks 2 Identical production env - Blue & Green One env is LIVE (blue) and another is idle (green) for deployment and tests When deployment and tests are successful user traffic is switched to green env (routed) ▬▬ CI CD DEVOPS ▬▬ JENKINS BEGINNER ► 🤍 JENKINS TIPS & TRICKS ►🤍 JENKINSFILE ► 🤍 DOCKER ► 🤍 KUBERNETES ► 🤍 ▬▬ UI TESTING ▬▬ SELENIUM BEGINNERS ► 🤍 SELENIUM JAVA FRAMEWORK ► 🤍 SELENIUM PYTHON ► 🤍 SELENIUM TIPS ► 🤍 SELENIUM BUILDER ► 🤍 SELENIUM 4 ► 🤍 KATALON STUDIO ► 🤍 ROBOT FRAMEWORK with RIDE ► 🤍 ROBOT FRAMEWORK with Eclipse► 🤍 PROTRACTOR ► 🤍 ACCELQ ► 🤍 TEST PROJECT ► 🤍 CUCUMBER BDD ► 🤍 CYPRESS ► 🤍 XPATH & WEB LOCATORS ► 🤍 ▬▬ API TESTING ▬▬ WEB SERVICES (API) ► 🤍 SOAPUI ► 🤍 POSTMAN ► 🤍 POSTMAN 2022 ► 🤍 JMETER API TESTING ► 🤍 GENERAL ► 🤍 KATALON STUDIO API ► 🤍 REST ASSURED ► 🤍 KARATE API ► 🤍 API MOCKING ► 🤍 ▬▬ MOBILE TESTING ▬▬ APPIUM ► 🤍 MOBILE TESTING ►🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMETER BEGINNER ► 🤍 JMETER INTERMEDIATE ► 🤍 JMETER ADVANCED ► 🤍 JMETER TIPS & TRICKS ► 🤍 PERFORMANCE TESTING ► 🤍 GATLING ► 🤍 ▬▬ IDE ▬▬ ECLIPSE ► 🤍 INTELLIJ IDEA ► 🤍 Visual Studio Code ► 🤍 ▬▬ PROGRAMMING ▬▬ JAVA BEGINNERS ► 🤍 JAVA TIPS & TRICKS ► 🤍 GROOVY ► 🤍 JAVASCRIPT ► 🤍 TYPESCRIPT ► 🤍 PYTHON ► 🤍 RUBY ► 🤍 ▬▬ BUILD TOOLS ▬▬ MAVEN ► 🤍 GRADLE ► 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ GIT & GITHUB ►🤍 GITLAB ► 🤍 ▬▬ CLOUD SERVICES ▬▬ BROWSERSTACK ► 🤍 SAUCELABS ► 🤍 LAMBDATEST ► 🤍 ▬▬ DATA FORMATS ▬▬ JSON ► 🤍 XML ► 🤍 ▬▬ VIRTUALIZATION ▬▬ VIRTUALIZATION ON WINDOWS ► 🤍 ▬▬ MOCK INTERVIEWS ► 🤍 ▬▬ ▬▬ OTHERS ▬▬ REDIS ►🤍 MISC ► 🤍 TOOLS & TIPS ► 🤍 QnA FRIDAY ► 🤍 SUNDAY SPECIAL ► 🤍 ▬▬ RAGHAV PAL ▬▬ UDEMY ► 🤍 GITHUB PROJECTS ► 🤍 CORPORATE TRAINING ► 🤍 STORIES BY RAGHAV ► 🤍 ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can NEVER STOP LEARNING Raghav Pal

Fake Resume Experience - #AskRaghav

56456
1502
40
00:00:36
15.04.2021

FREE courses - 🤍 It is not a good idea to fake a resume for a testing interview or any other type of interview. Employers expect candidates to be honest and transparent about their skills and experiences, and if you are caught lying on your resume it can severely damage your reputation and credibility It is always better to be honest about your qualifications and focus on highlighting your strengths and skills that make you a good fit for the job. If you are not qualified for a particular position, it is better to wait and apply for positions that are more suited to your skills and experiences If you are concerned about your lack of experience or qualifications for a testing role, consider taking online courses or earning relevant certifications to improve your skills and increase your chances of success in the job market Stories by Raghav - 🤍 My Udemy Courses - 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. ONLINE COURSES TO LEARN 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 TestProject - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Appium - 🤍 Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Kubernetes - 🤍 -VIRTUALISATION- Virtualization on windows - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 GitLab - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 JAVASCRIPT - 🤍 PYTHON - 🤍 IDE Visual Studio Code - 🤍 BUILD TOOLS Maven - 🤍 Gradle - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 - Connect with Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Facebook - 🤍 Twitter - 🤍 Youtube - 🤍 Never Stop Learning Raghav

Docker Tutorial for Beginners - Install Docker on Windows 10

433963
2639
125
00:11:40
19.01.2020

Welcome to this on Docker Tutorial for Beginners. In this video provides an Introduction on How Install Docker Desktop on Windows and Get started with Docker for Windows 10. We are not going to Install Docker Toolbox on Windows 10. Docker is an open platform that allows use package, develop, run, and ship software applications in different environments using containers. In this course We will learn How to Write Dockerfiles, Working with the Docker Toolbox, How to Work with the Docker Machine, How to Use Docker Compose to fire up multiple containers, How to Work with Docker Kinematic, Push images to Docker Hub, Pull images from a Docker Registery, Push stacks of servers to Docker Hub How to install Docker on Mac. #ProgrammingKnowledge #Docker #DockerTutorial #WhatIsDocker #DockerForDevOps #DockerBasicCommands #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners ★★★Top Online Courses From ProgrammingKnowledge ★★★ Python Programming Course ➡️ 🤍 ⚫️ 🤍 Java Programming Course ➡️ 🤍 ⚫️ 🤍 Bash Shell Scripting Course ➡️ 🤍 ⚫️ 🤍 Linux Command Line Tutorials ➡️ 🤍 ⚫️ 🤍 C Programming Course ➡️ 🤍 ⚫️ 🤍 C Programming Course ➡️ 🤍 ⚫️ 🤍 PHP Programming Course ➡️ 🤍 ⚫️ 🤍 Android Development Course ➡️ 🤍 ⚫️ 🤍 C# Programming Course ➡️ 🤍 ⚫️ 🤍 JavaFx Programming Course ➡️ 🤍 ⚫️ 🤍 NodeJs Programming Course ➡️ 🤍 ⚫️ 🤍 Jenkins Course For Developers and DevOps ➡️ 🤍 ⚫️ 🤍 Scala Programming Tutorial Course ➡️ 🤍 ⚫️ 🤍 Bootstrap Responsive Web Design Tutorial ➡️ 🤍 ⚫️ 🤍 MongoDB Tutorial Course ➡️ 🤍 ⚫️ 🤍 QT C GUI Tutorial For Beginners ➡️ 🤍 ★★★ Online Courses to learn ★★★ Get 2 FREE Months of Unlimited Classes from skillshare - 🤍 Data Science - 🤍 | 🤍 Machine Learning - 🤍 | 🤍 Artificial Intelligence - 🤍 | 🤍 MERN Stack E-Degree Program - 🤍 | 🤍 DevOps E-degree - 🤍 | 🤍 Data Analytics with R - 🤍 | 🤍 AWS Certification Training - 🤍 | 🤍 Projects in Java - 🤍 | 🤍 Machine Learning With TensorFlow - 🤍 | 🤍 Angular 8 - Complete Essential Guide - 🤍 Kotlin Android Development Masterclass - 🤍 Learn iOS Programming Building Advance Projects - 🤍 ★★★ Follow ★★★ My Website - 🤍 DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!

TestingTerminologies | Acceptance Testing | #AskRaghav

3631
155
5
00:00:16
03.02.2022

FREE courses - 🤍 Acceptance testing is a testing technique used to determine whether a system satisfies the acceptance criteria defined by the customer. It is a way to confirm that a system is able to meet the requirements of the business and that it is ready for use. Acceptance testing is typically performed by the end user or a representative of the end user, and is usually the final step in the testing process before the system is deployed #shorts #AcceptanceTesting Never Stop Learning Raghav ▬▬▬▬▬▬▬ Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can ▬▬▬▬▬▬▬▬ USEFUL LINKS ▬▬▬▬▬▬▬▬▬ Shorts Eng - 🤍 Shorts Hindi - 🤍 Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 TypeScript - 🤍 Python - 🤍 Ruby - 🤍 ▬▬ BUILD TOOLS ▬▬ Maven - 🤍 Gradle - 🤍 ▬▬ CLOUD SERVICES ▬▬ Browserstack - 🤍 Saucelabs - 🤍 LambdaTest - 🤍 ▬▬ DATA FORMATS ▬▬ JSON - 🤍 XML - 🤍 ▬▬ OTHERS ▬▬ Virtualization on Windows - 🤍 Mock Interviews - 🤍 Redis - 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday - 🤍 Sunday Special - 🤍 —

Sunday Special 56 | You will Never waste your Time after watching this

20115
1315
168
00:03:20
27.12.2020

website - 🤍 LifeCharger - 🤍 I request you to try this only for 4 days and see the huge difference in yourself. This works like a miracle and I can promise you this 5 Habits - 🤍 Join Automation Step By Step channel: 🤍 Stories by Raghav - 🤍 My Udemy Courses - 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. ONLINE COURSES TO LEARN 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 TestProject - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Appium - 🤍 Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Kubernetes - 🤍 -VIRTUALISATION- Virtualization on windows - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 GitLab - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 JAVASCRIPT - 🤍 PYTHON - 🤍 IDE Visual Studio Code - 🤍 BUILD TOOLS Maven - 🤍 Gradle - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 - Connect with Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Facebook - 🤍 Twitter - 🤍 Youtube - 🤍 Never Stop Learning Raghav

What is DevOps | Explain DevOps | How DevOps work | Beginners

32404
676
108
00:06:12
22.07.2019

A True Story of DevOps - 🤍 FREE Courses - 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 #Understanding DevOps UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Appium - 🤍 Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 JAVASCRIPT - 🤍 IDE Visual Studio Code - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 Keep Learning, Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Facebook - 🤍 Twitter - 🤍 Youtube - 🤍 Instagram - 🤍 You can support my mission for education by sharing this knowledge and helping as many people as you can.

S6E1 Learn JMeter Series - Running JMeter on Docker

10677
180
39
00:13:10
11.02.2021

This video tutorial demonstrates how you can run #JMeter on #Docker. ➡️ Join QAInsights Community at 🤍 ➡️ Buy me a tea 🍵 🤍 ➡️ Get Certified in CKAD 🤍 ➡️ Get Certified in CKA 🤍 ➡️ My preferred DNS is NextDNS 🤍 ➡️ Learn Linux 🤍 ➡️ Get performance testing jobs real quick using Indeed → 🤍 ➡️ Hostinger Web Hosting → 🤍 ➡️ My Productivity Tools → 🤍 ➡️ App Sumo for your business → 🤍 ➡️ Amazon → 🤍 ➡️ TubeBuddy → 🤍 ➡️ LoadRunner Playlist 🤍 ➡️ My first Udemy course entitled `Performance Testing using DevWeb` has been published. ➡️ 🤍 ➡️ Subscribe at my blog 🤍

Never Miss 5 best practices for Automation Testing #AskRaghav

2624
169
6
00:00:58
15.05.2023

1. Have a good and complete understanding of the requirements and needs from automation 2. Do Automation Feasibility Analysis before starting any automation Automation Feasibility Analysis - 🤍 Automation Gating Criteria - 🤍 3. Select the Right Automation Tools in terms of usage, needs, features, reporting, enhancement, maintenance etc. Know Tech Stack of your App 4. Automation Framework and Scripts reusable and easy to use and maintain 5. Automation can be made part of CI CD process #shorts #automationtesting #bestpractices Never Stop Learning Raghav Pal 🤍 ▬▬▬▬▬▬▬ Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can ▬▬▬▬▬▬▬▬ USEFUL LINKS ▬▬▬▬▬▬▬▬▬ Shorts Eng - 🤍 Shorts Hindi - 🤍 Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 TypeScript - 🤍 Python - 🤍 Ruby - 🤍 ▬▬ BUILD TOOLS ▬▬ Maven - 🤍 Gradle - 🤍 ▬▬ CLOUD SERVICES ▬▬ Browserstack - 🤍 Saucelabs - 🤍 LambdaTest - 🤍 ▬▬ DATA FORMATS ▬▬ JSON - 🤍 XML - 🤍 ▬▬ OTHERS ▬▬ Virtualization on Windows - 🤍 Mock Interviews - 🤍 Redis - 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday - 🤍 Sunday Special - 🤍 —

Heart-to-Heart | Why & How I started on YouTube | Raghav Pal

3883
243
158
00:08:48
13.08.2020

more about Raghav - 🤍 Today I will tell you my story and journey on YouTube. How I started and How you can start on YouTube. Only 3 things you will need. Tell me how you liked this video in the comment section below. My Headphones - Logitech H111 Stero Headset, Black & Grey Join the channel - 🤍

Selenium vs Cypress | #AskRaghav

16340
404
28
00:00:16
09.08.2022

Video - 🤍 Selenium and Cypress are both open-source tools that are commonly used for automated testing of web applications. Here are some key differences: *Language support* : Selenium supports a variety of programming languages, including Java, Python, C#, and Ruby. Cypress, on the other hand, only supports JavaScript and TypeScript *Test execution* : Selenium tests are executed remotely, scripts do not run inside the browser. Cypress tests, on the other hand, are executed directly in the browser, which allows for faster test execution and easier debugging. *Test maintenance* : Selenium tests can be more difficult to maintain because they are often dependent on the structure of the web application under test. Cypress tests are typically easier to maintain because they are less dependent on the structure of the web application. Overall, Selenium is a more powerful and flexible tool, but it may require more setup and maintenance than Cypress. Cypress is easier to use and faster to execute, but as of now it can be implemented with JavaScript and TypeScript only #shorts #selenium #cypress Never Stop Learning Raghav 🤍 ▬▬▬▬▬▬▬ Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can ▬▬▬▬▬▬▬▬ USEFUL LINKS ▬▬▬▬▬▬▬▬▬ Shorts Eng - 🤍 Shorts Hindi - 🤍 Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 TypeScript - 🤍 Python - 🤍 Ruby - 🤍 ▬▬ BUILD TOOLS ▬▬ Maven - 🤍 Gradle - 🤍 ▬▬ CLOUD SERVICES ▬▬ Browserstack - 🤍 Saucelabs - 🤍 LambdaTest - 🤍 ▬▬ DATA FORMATS ▬▬ JSON - 🤍 XML - 🤍 ▬▬ OTHERS ▬▬ Virtualization on Windows - 🤍 Mock Interviews - 🤍 Redis - 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday - 🤍 Sunday Special - 🤍 —

Do you Know - What is Automation Feasibility Analysis #AskRaghav

2355
110
0
00:01:00
24.04.2023

*Automation Feasibility Analysis* is a process to evaluate what all can be automated, should be automated, benefits & cost of automation *Evaluate the task* How complex is the task Is the work repetitive and needs to be done multiple times *Availability of Automation tools and technology* options for automation fit for requirements *Cost of automation* initial investment in the automation tools, resources, training cost for ongoing maintenance and support costs *Benefits of automation* what will be the savings in time, effort and costs increase in efficiency, accuracy & consistency what will be the ROI - return on investment *Potential risks of automation* Impact on org and employees Impact on jobs #shorts #AutomationFeasibilityAnalysis Never Stop Learning Raghav Pal 🤍 ▬▬▬▬▬▬▬ Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can ▬▬▬▬▬▬▬▬ USEFUL LINKS ▬▬▬▬▬▬▬▬▬ Shorts Eng - 🤍 Shorts Hindi - 🤍 Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬▬ JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 TypeScript - 🤍 Python - 🤍 Ruby - 🤍 ▬▬ BUILD TOOLS ▬▬ Maven - 🤍 Gradle - 🤍 ▬▬ CLOUD SERVICES ▬▬ Browserstack - 🤍 Saucelabs - 🤍 LambdaTest - 🤍 ▬▬ DATA FORMATS ▬▬ JSON - 🤍 XML - 🤍 ▬▬ OTHERS ▬▬ Virtualization on Windows - 🤍 Mock Interviews - 🤍 Redis - 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday - 🤍 Sunday Special - 🤍 —

Sunday Special | Story | The Man with the Lamp | Raghav Pal |

2358
97
35
00:01:08
20.03.2022

Sunday Special - 🤍 FREE Tutorials - 🤍 Hi Friends, in today's story we will learn not to judge others too quickly, Let's watch the story... Stories by Raghav - 🤍 #SundaySpecial #MotivationalStory Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. Never Stop Learning Raghav

DevOps Career Roadmap - Part 1

400331
10004
825
00:10:04
08.06.2021

Part 2 - 🤍 All FREE courses - 🤍 How to BecomeDevOps Engineer How to start career in DevOps Stages of DevOps DevOps tools to learn What is DevOps - 🤍 DevOps Process - 🤍 Never Stop Learning Raghav #DevOps #CareerInDevOps #DevOpsRoadmap #devopsengineer

TestProject Tutorial 17 | How to setup additional containers for headless browsers - Part 2

2894
34
15
00:08:57
23.09.2020

TestProject - 🤍 FREE - 🤍 Notes: Prerequisite - What is Docker Introduction - Why do we need TestProject Agent on Docker Docker Setup - Download and Install How to start TestProject agent on Docker How to run tests on Docker agent References & Links: 🤍 🤍 🤍 Docker is a platform that enables to build, share and run application or services in isolated containers In order to run test you need an agent Agent is a powerful wrapper for Selenium and Appium Once you install and start agent, can run tests on all browsers and devices connected on that system Agent contains all drivers and configurations setup for selenium and appium *Why do we need TestProject Agent on Docker* Flexible - Can setup and run agent anytime - quickly and easily Can use a single command to setup a Docker container with required browsers and TestProject agent Can create a container when required and remove after execution Can use permanent or temporary (ephemeral) docker containers No need of physical machines with separate OS, browsers etc Saves resource, time & cost Integrates well with CI/CD workflow How to download and install Docker 🤍 🤍 How to start TestProject agent on Docker Step 1 - Install Docker Step 2 - Setup TestProject Agent in Docker Permanent 1 - Create and Copy API Key from your TestProject Account Integration - API - Create API 2 - Open Terminal and run the command docker run name testproject-agent -e TP_API_KEY="Your API Key" -e TP_AGENT_ALIAS="My First Agent" -v “location of local host folder”:/var/testproject/agent testproject/agent:latest Ephemeral 1 - Create and Copy API Key from your TestProject Account 2 - Copy the JOB ID 3 - Run the command docker run rm -e TP_API_KEY="REPLACE_WITH_YOUR_KEY" -e TP_JOB_ID="REPLACE_WITH_YOUR_JOB_ID" testproject/agent:latest Using Docker Compose to create multi-container service for Test Execution Step 1 - Install Docker Step 2 - Create a YAML file as shown Step 3 - Update the API Key, Job ID and local volume path Step 4 - Run the command docker compose -f “filename” up -d DOCKER COMMANDS docker -v docker version docker version docker info docker ps -a -q list all container id docker stop $(docker ps -a -q) docker system prune You can support by Joining Automation Step By Step channel: 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. ONLINE COURSES TO LEARN 🤍 Udemy Discounts - 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 Never Stop Learning Raghav

#AskRaghav | How to make Career in Cloud Testing in 2023

9309
250
56
00:07:32
17.01.2023

Free Courses - 🤍 *A Beginners Guide for Career in Cloud Testing* 1. Gain experience in testing and quality assurance (QA), CI-CD, DevOps Testing methodologies and tools, frameworks & Testing Projects *Platforms* - AWS Device Farm | AzureDev Test Labs | Google Cloud Test Lab *Test Management* - Zephyr | TestRail | TestLink | qTest .. *Monitoring* - New Relic | Datadog | AppDynamics .. *Load Testing* - JMeter | LoadRunner | K6 … *Security Testing* - Burp Suite | Acunetix | Tenable.io … 2. Start by learning about cloud computing and the different types of cloud services Software as a Service (SaaS) | Infrastructure as a Service (IaaS) | Platform as a Service (PaaS) Story of Cloud Computing - 🤍 A Story of Cloud Services 🤍 3. Learn about cloud testing specifically including AWS, GCP, Azure This can involve taking online courses or earning a certification in cloud testing 4. AWS, Azure, Certified Cloud Testing Professional (CCTP) Certified Cloud Security Professional (CCSP) 5. Consider joining a professional organization to stay up to date Cloud Native Computing Foundation (CNCF) | Cloud Security Alliance (CSA) #CloudTesting #Career A career path in cloud testing involves testing software and applications that are deployed in the cloud. This may include testing the functionality, performance, security, and reliability of cloud-based applications and services A cloud test engineer is responsible for designing, implementing, and executing tests on software and applications that are deployed in the cloud. They ensure that these applications and services are functional, perform well, are secure, and are reliable Hindi videos - #AskRaghavHindi Every Like & Subscription gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can Never Stop Learning Raghav Pal ▬▬▬▬▬▬▬▬ USEFUL LINKS ▬▬▬▬▬▬▬▬▬ Ask Raghav - 🤍 GitHub Repositories - 🤍 Udemy Discounts - 🤍 Stories - 🤍 ▬▬ CI | CD | DEVOPS ▬ Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Jenkinsfile - 🤍 Kubernetes - 🤍 ▬▬ UI TESTING ▬ Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium 4 - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 AccelQ - 🤍 Test Project - 🤍 Cucumber BDD - 🤍 Cypress - 🤍 Playwright - 🤍 WebdriverIO - 🤍 XPath & Web Locators - 🤍 ▬▬ API TESTING ▬ Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 Postman 2022 - 🤍 Rest Assured - 🤍 Karate API Testing - 🤍 General - 🤍 JMeter API Testing - 🤍 Katalon Studio API Testing - 🤍 API Mocking - 🤍 ▬▬ MOBILE TESTING ▬ Appium - 🤍 Mobile Playlist - 🤍 ▬▬ PERFORMANCE TESTING ▬ JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Gatling - 🤍 Performance Testing - 🤍 ▬▬ SOURCE CODE MANAGEMENT ▬ Git & GitHub - 🤍 GITLAB - 🤍 ▬▬ IDE ▬ Eclipse - 🤍 IntelliJ IDEA - 🤍 Visual Studio Code - 🤍 ▬▬ PROGRAMMING ▬ Java Beginners - 🤍 Java Tips & Tricks - 🤍 Groovy - 🤍 JavaScript - 🤍 TypeScript - 🤍 Python - 🤍 Ruby - 🤍 ▬▬ BUILD TOOLS ▬ Maven - 🤍 Gradle - 🤍 ▬▬ CLOUD SERVICES ▬ Browserstack - 🤍 Saucelabs - 🤍 LambdaTest - 🤍 ▬▬ DATA FORMATS ▬ JSON - 🤍 XML - 🤍 —

Karate Beginner Tutorials 1 | Introduction | What is Karate

47165
428
68
00:03:38
20.05.2021

All FREE courses - 🤍 What is Karate Features Open-source tool for API Testing (SOAP & REST) Written in Java Can also do API Mocking, UI Testing, Performance testing (using Gatling) Uses BDD syntax Created by ‘Peter Thomas’ in 2017 #KarateAPITesting Easy for non-programmers (written in java, but implemented using BDD style, Gherkin syntax) Requires no technical programming language Parallel testing Distributed testing Multi environment testing Data Driven testing - CSV, JSON, YAML files Debugging Reporting Cross-browser web UI testing Cross-platform Desktop testing Performance testing of APIs using Gatling CI CD support Join Automation Step By Step channel: 🤍 Stories by Raghav - 🤍 My Udemy Courses - 🤍 Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you You can support my mission for education by sharing this knowledge and helping as many people as you can If my work has helped you, consider helping any animal near you, in any way you can. ONLINE COURSES TO LEARN 🤍 GitHub - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 Protractor - 🤍 TestProject - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Appium - 🤍 Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 Kubernetes - 🤍 -VIRTUALISATION- Virtualization on windows - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 GitLab - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 JAVASCRIPT - 🤍 PYTHON - 🤍 IDE Visual Studio Code - 🤍 BUILD TOOLS Maven - 🤍 Gradle - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 - Connect with Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Twitter - 🤍 Youtube - 🤍 Never Stop Learning Raghav

What is a Docker Container? Docker Demo || Docker Tutorial 2

59257
1987
49
00:09:33
11.10.2019

What is a Docker container technically? This is a practical video of how to use Docker containers. Docker image vs container A container is made up of images, from base image which is mostly Linux Alpine to application images. In this video I explain docker images in more detail and then show you a practical example of how you can use and run a docker container on your local machine. T i m e s t a m p s 🐳 0:09 - What is a container technically? (layers of images) 1:16 - Demo part (docker hub and run a docker container locally) For any questions/issues/feedback, please leave me a comment and I will get back to you as soon as possible. ►► Full Docker and Kubernetes Tutorial Playlist: 🤍 This video is the ❷ of a complete series for beginners, where I explain the basic concepts and also show you demo's like deploying your containerized application. At the end of this tutorial you will fully understand Docker and Kubernetes. 💡 Only interested in Docker? ►► Complete Docker Tutorial Playlist: 🤍 #docker #whatisdocker #dockertutorials #devops #techworldwithnana - The complete step-by-step guide to Docker and Kubernetes will include the following content: 🐳 D O C K E R - Container concept - Why docker? (image vs. traditional DevOps) - Install docker on different operating systems - 8 basic commands you need to know - Docker vs. Virtual Machine - Docker in Practice: Overview of whole development process with Docker (development, continuous delivery, deployment) - Develop an application with Docker - Docker Compose - Dockerfile - Private Repository - Deploying your containerized application - Docker Volumes from theory to practice ✵ K U B E R N E T E S - Main Kubernetes components (including Pod, Service, Ingress, Volumes, ConfigMap, Secrets, Deployment, StatefulSet) - Kubernetes architecture for beginners (master, slave nodes & processes) - Understand how does K8s REALLY work? Main Concepts of how to use K8s - Minikube, Kubectl - set up the cluster and connect to it - Kubectl main commands - Demo - Configuration file (YAML) - syntax - Kubernetes Namespaces - Communication between the pods - basic networking concepts in Kubernetes - K8s Deployment in practice - example application deployment (pod + service + Ingress + secret) ▬▬▬▬▬▬ Connect with me 👋 ▬▬▬▬▬▬ Join private Facebook group ► 🤍 Don't forget to subscribe ► 🤍 DEV ► 🤍 INSTAGRAM ► 🤍 TWITTER ► 🤍 LINKEDIN ► 🤍 Legal Notice: Docker and the Docker logo are trademarks or registered trademarks of Docker, Inc. in the United States and/or other countries. Docker, Inc. and other parties may also have trademark rights in other terms used herein. This video is not accredited, certified, affiliated with, nor endorsed by Docker, Inc.

#AskRaghav | Job Interviews | Have knowledge but no real world project experience

5948
191
17
00:02:41
01.04.2019

FREE Courses - 🤍 Udemy - 🤍 Training by Raghav at your venue - raghav.qna🤍gmail.com Training schedule - 🤍 #askRaghav UI TESTING Selenium Beginners - 🤍 Selenium Java Framework from Scratch - 🤍 Selenium Python - 🤍 Selenium Tips - 🤍 Selenium Builder - 🤍 Katalon Studio - 🤍 Robot Framework with RIDE- 🤍 Robot Framework with Eclipse - 🤍 API TESTING Web Services (API) - 🤍 SoapUI - 🤍 Postman - 🤍 General - 🤍 Katalon Studio API Testing - 🤍 MOBILE TESTING Mobile Playlist - 🤍 CI | CD | DEVOPS Jenkins Beginner - 🤍 Jenkins Tips & Trick - 🤍 Docker - 🤍 VERSION CONTROL SYSTEM Git & GitHub - 🤍 PERFORMANCE TESTING JMeter Beginner - 🤍 JMeter Intermediate - 🤍 JMeter Advanced - 🤍 JMeter Tips & Tricks - 🤍 Performance Testing - 🤍 PROGRAMMING Java Beginners - 🤍 Java Tips & Tricks - 🤍 GROOVY - 🤍 IDE Visual Studio Code - 🤍 MAVEN Maven - 🤍 OTHERS Redis- 🤍 Misc - 🤍 Tools & Tips - 🤍 QnA Friday- 🤍 Sunday Special - 🤍 Ask Raghav - 🤍 Interviews - 🤍 All Playlists - 🤍 Keep Learning, Raghav Website - 🤍 LifeCharger - 🤍 Udemy Courses - 🤍 Facebook - 🤍 Twitter - 🤍 Youtube - 🤍 You can support my mission for education by sharing this knowledge and helping as many people as you can.

Назад
Что ищут прямо сейчас на
docker by raghav pal рисунки радужных друзей гта скачать собираем пк Rock of Ages 2 сборка для сильных пк AM4 FAV film 本須賀 Free fire clips лучшая материнская плата самп скачать samp сборка l2 elmorelab pvp killing floor 2 berserker builds Ark: Fjordur habboship ship дешёвая Kd free fire MX Linux XFCE yusukekira