Setting up Jenkins on Windows 10
Tag: windows
Installing and setting PowerShell Core
Getting started with Azure requires PowerShell & Bash CLI and best to install PowerShell Core rather than pre-installed Windows PowerShell to make use of advanced Azure Modules. Here is how to get started with installation! Download PowerShell Core v6.2 from https://github.com/PowerShell/PowerShell/releases We can then install Azure modules in PowerShell Core using below command. This command … Continue reading Installing and setting PowerShell Core
Terraform Setup on Windows to create AWS resources
Let us see how can we setup Terraform CLI on Windows and create some resouces on AWS cloud. Step 1: Download terraform from https://www.terraform.io/downloads.html Step 2: Unzip the file and place it in desired location Step 3: Set path in System Environment Variables Step 4: Test the installation CMD prompt Step 5: Configuring and Creating … Continue reading Terraform Setup on Windows to create AWS resources
Enabling command prompt inside a Container
To run another command inside a container you use docker exec every time but by enabling shell or terminal access in the container you won't have to use this again. Here is the docker command which you use to enable shell access inside a container: $ docker exec -it <container ID> shwhere exec is used … Continue reading Enabling command prompt inside a Container
Executing Basic Docker Commands
In this blog post we will see some of the basic docker commands to interact with containers and images. [What is Docker? Containers and its Architecture. Learn more!] Creating and running a container from an image $ docker run <image_name>$ docker run hello-world $ docker run <image_name> <command>$ docker run busybox echo hello there , … Continue reading Executing Basic Docker Commands
How to install Docker on Windows 10 Home Edition? [Solved!]
To run Docker on Windows 10 Home Edition you need to do two things: 1. Check if the Hardware Virtualization is Enabled 2. Install Docker Toolbox instead of Docker Desktop Full Guide:
GitLab CI: Running JOBS Locally with GitLab Runner using Shell on Windows
GitLab CI: Running JOBS Locally with GitLab Runner using Shell on Windows. Prerequisites: GitLab account Git installed in the system PowerShell A project hosted on GitLab Steps to be followed Step 1) Download Git Runner Source to install Git Runner: https://docs.gitlab.com/runner/install/windows.html Step 2) Create a folder named C:\GitLab-Runner\ and paste gitlab-runner.exe file (Download the binary … Continue reading GitLab CI: Running JOBS Locally with GitLab Runner using Shell on Windows