Running Docker Commands on a Remote Machine via SSH

Running Docker Commands on a Remote Machine via SSH

Have you ever wanted to run Docker commands on a remote machine without logging into it every time? Maybe you鈥檙e working with a cloud development box, testing on different architectures, or simply leveraging more powerful remote compute resources. Whatever your use case, Docker鈥檚 built-in SSH support makes this incredibly straightforward. I use a Macbook (which is ARM-based) for my local development, and a lot of times I need to build container images for amd64 architecture, also I don鈥檛 wanna run a bulky Docker Desktop locally. ...

February 1, 2026 路 7 min 路 Suraj Deshmukh
LLM CLI tool using GitHub Copilot Models

Using LLMs to write meaningful commit messages from CLI

Let鈥檚 face it, writing commit messages is tedious work. I鈥檝e been using LLMs to write my commit messages for a while now. But until now, I used to copy the diffs manually and paste it into some chat window and ask the LLM to write a commit message. I鈥檝e been trying various CLI tools viz. OpenAI鈥檚 Codex CLI, Google鈥檚 Gemini CLI, etc. But codex lacks piping support and Gemini CLI cannot be used with internal codebases! I can use GitHub Copilot extension in VS Code with internal codebases, but I wanted a CLI tool that I can use in my terminal. GitHub Copilot is now free for all GitHub users, so this is useful for everyone. ...

July 17, 2025 路 3 min 路 Suraj Deshmukh