Running Docker inside Docker Sep 17, 2022 Background 📃 First let’s understand the use cases to run docker inside a docker container. Generally we build docker images in a VM which is a common approch. but recently, I was trying to create a Docker-based dynamic container as agent for the TeamCity Server, As a part of CI build, the pipeline will create a docker image inside the docker agent which i have integrated with the TeamCity Server. ...
Go to Automate and Integrate tools with Build Jun 14, 2022 1️⃣ Background Modern software development relies on repeatable, automatable builds that can be run by anyone, anywhere, at any time. This avoids the age-old developer excuse of “It works on my machine! ...
Golang Tips2: Using Third-Paty Tools for betterment of Go Jun 1, 2022 1️⃣ Background While some people choose to distribute their Go programs as pre-compiled binaries, tools written in Go can also be built from source and installed into your Go work‐space via the go install command. ...
Setup Prod-Grade kubernets in your local Mar 19, 2022 Background 📃 k8s
Golang Tips1: Using String better way in Go Mar 18, 2022 Background 🧐 Go includes strings as a builtin type. The zero value for a string is the empty string. Go supports Unicode; Strings in Go are immutable; you can reassign the value of a string variable, but you cannot change the value of the string that is assigned to it. ...