Dev Tunnel Logo

devtunnel CLI

Overview Microsoft devtunnel is a CLI tool that allows you to create secure tunnels to expose your local development services to the internet. This guide provides comprehensive setup instructions for installing and configuring devtunnel on Windows, macOS, and Linux. 1 devtunnel host -p 6001 --protocol https -a Prerequisites Before installing devtunnel, ensure you meet the following requirements: System Requirements Windows: Windows 10 (version 1809 or later) or Windows 11 winget package manager (included in Windows 10/11) or PowerShell 5.1+ Administrator privileges (for some installation methods) macOS: ...

January 22, 2026 · 9 min · 1817 words · PrashantUnity
PostgreSQL database

Postgres 16 in Docker

Overview This guide shows how to run PostgreSQL 16 locally using the official Docker image and Docker Compose. You get a default database user and database, port 5432 on your machine mapped into the container, and a named volume so data survives container restarts. Prerequisites Docker Engine installed (Get Docker). Docker Compose v2 (bundled with Docker Desktop; on Linux you may use the docker compose plugin). The version: key at the top of a Compose file is optional in modern Compose; including version: '3.8' is still fine for compatibility. ...

March 24, 2026 · 3 min · 560 words · PrashantUnity