惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园_首页
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
The Cloudflare Blog
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
博客园 - 聂微东
IT之家
IT之家
雷峰网
雷峰网
H
Help Net Security
博客园 - 叶小钗
美团技术团队
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Docker Microservices Demo with Cross-Language Containers
Sumeet Dugg · 2026-04-30 · via DEV Community

Docker Microservices Demo with Cross-Language Containers

From Local Development to Docker - A Cross-Language Technical Roadmap

By the end of this guide, you'll understand how to:

  • Build a microservices application using multiple programming languages
  • Run C# (.NET), Python (Flask), and Node.js (Express) services independently
  • Convert applications into Docker images
  • Use a Docker network so containers can communicate by service name
  • Understand how containers isolate file systems, networking, and runtime environments
  • Use docker build, docker run, and docker network commands
  • Build a basic frontend that communicates with backend services

Prerequisites

Foundational Knowledge

  • Basic understanding of C#, Python, and JavaScript/Node.js
  • Familiarity with command line/terminal
  • Basic understanding of APIs and HTTP requests

Software Required

  • Docker Desktop installed and running
  • .NET 8 SDK (Optional)
  • Python 3.12+ (Optional)
  • Node.js 22+ (Optional)
  • Google Chrome or any browser
  • Text editor (VS Code recommended)

Hardware Requirements

  • Windows/Linux/Mac system
  • Minimum 8 GB RAM recommended
  • Internet connection for downloading Docker images and packages

Introduction: What Are Containers in Docker?

Containers run in isolated environments on a host machine (local or remote). Docker containers have their own:

  • File system
  • Networking
  • Processes
  • Runtime environment

This allows developers to build applications that behave consistently across systems.

You can create private Docker networks where containers communicate securely using container names instead of IP addresses.

The Story Behind This Project

To understand Docker networking practically, I created three separate applications using different technologies:

  1. C# for the authentication service
  2. Python for the notification service
  3. Node.js for the frontend dashboard

Instead of running everything on localhost manually, Docker containers make them work together cleanly.

What Is Microservices Architecture?

Microservices is an architectural style where an application is split into small independent services.

Instead of one large monolithic application:

  • Each service handles one responsibility
  • Services can be built in different languages
  • Services can scale independently
  • Teams can develop services separately

In this project:

  • Auth handles login/payment response
  • Notification handles alerts
  • Frontend shows all data in browser

Project Structure

micro-demo/
├── auth-service/          # C# ASP.NET Core Service
│   ├── auth-service.csproj
│   ├── Program.cs
│   └── Dockerfile
├── notification-service/  # Python Flask Service
│   ├── app.py
│   ├── requirements.txt
│   └── Dockerfile
└── frontend/              # Node.js Frontend
    ├── server.js
    ├── package.json
    └── Dockerfile

Enter fullscreen mode Exit fullscreen mode

Download Project Files: GitHub Repository


Step 1: Build the C# Auth Service

Program.cs

using auth_service.payment_services;

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();

var payment = new PaymentService();

app.MapGet("/", () => "auth-service running");

app.MapGet("/login", () =>
{
    return Results.Ok(new
    {
        token = "jwt-demo-token"
    });
});

app.MapGet("/pay", async () =>
{
    return Results.Ok(await payment.ProcessPayment());
});

app.Run("http://0.0.0.0:8080");

Enter fullscreen mode Exit fullscreen mode

payment-service/payment.cs

using System.Net.Http;

namespace auth_service.payment_services;

public class PaymentService
{
    private readonly HttpClient http = new HttpClient();

    public async Task<object> ProcessPayment()
    {
        string notify = "";
        try
        {
            notify = await http.GetStringAsync("http://notification-service:5000/notify");
        }
        catch
        {
            notify = "notification failed";
        }

        return new
        {
            service = "payment-service",
            payment = "success",
            notification = notify
        };
    }
}

Enter fullscreen mode Exit fullscreen mode

auth-service.csproj

<Project Sdk="Microsoft.NET.Sdk.Web">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <Nullable>enable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
  </PropertyGroup>
</Project>

Enter fullscreen mode Exit fullscreen mode

Dockerfile

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
COPY . .
RUN dotnet publish -c Release -o /app

FROM mcr.microsoft.com/dotnet/aspnet:8.0
WORKDIR /app
COPY --from=build /app .
EXPOSE 8080
ENTRYPOINT ["dotnet", "auth-service.dll"]

Enter fullscreen mode Exit fullscreen mode

Build Image

docker build -t auth-service:Demo .

Enter fullscreen mode Exit fullscreen mode


Step 2: Build Python Notification Service

app.py

from flask import Flask

app = Flask(__name__)

@app.route("/")
def home():
    return "notification-service running"

@app.route("/notify")
def notify():
    return "Email + SMS sent"

app.run(host="0.0.0.0", port=5000)

Enter fullscreen mode Exit fullscreen mode

requirements.txt

Flask

Enter fullscreen mode Exit fullscreen mode

Dockerfile

FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]

Enter fullscreen mode Exit fullscreen mode

Build Image

docker build -t notification-service:Demo .

Enter fullscreen mode Exit fullscreen mode


Step 3: Build Node.js Frontend

server.js

const express = require("express");
const axios = require("axios");
const app = express();

app.get("/", async (req, res) => {
  let csData = {};
  let pythonData = "";

  try {
    const csResponse = await axios.get("http://auth-service:8080/pay");
    csData = csResponse.data;
  } catch (err) {
    csData = { error: "C# service unreachable" };
  }

  try {
    const pyResponse = await axios.get("http://notification-service:5000/notify");
    pythonData = pyResponse.data;
  } catch (err) {
    pythonData = "Python service unreachable";
  }

  res.send(`
    <html>
      <head>
        <title>Microservices Frontend</title>
      </head>
      <body>
        <h1>Frontend Dashboard</h1>
        <pre>${JSON.stringify(csData, null, 2)}</pre>
        <pre>${pythonData}</pre>
      </body>
    </html>
  `);
});

app.listen(3000, () => {
  console.log("Frontend running at Docker");
});

Enter fullscreen mode Exit fullscreen mode

package.json

{
  "dependencies": {
    "axios": "^1.15.2",
    "express": "^5.2.1"
  }
}

Enter fullscreen mode Exit fullscreen mode

Dockerfile

FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "server.js"]

Enter fullscreen mode Exit fullscreen mode

Build Docker Image

docker build -t frontend-nodejs:Demo .

Enter fullscreen mode Exit fullscreen mode


Step 4: Create Docker Network

docker network create network-microservice

Enter fullscreen mode Exit fullscreen mode

This creates a private bridge network where containers can find each other by container name.


Step 5: Run All Containers

Run Auth Service

docker run -d --name auth-service --network network-microservice -p 5001:8080 auth-service:Demo

Enter fullscreen mode Exit fullscreen mode

Run Notification Service

docker run -d --name notification-service --network network-microservice -p 5002:5000 notification-service:Demo

Enter fullscreen mode Exit fullscreen mode

Run Frontend

docker run -d --name frontend-nodejs --network network-microservice -p 5003:3000 frontend-nodejs:Demo

Enter fullscreen mode Exit fullscreen mode


Step 6: Verify Network

docker network inspect network-microservice

Enter fullscreen mode Exit fullscreen mode

Output:

"Containers": {
  "2c2361e10770...": {
    "Name": "auth-service",
    "IPv4Address": "172.19.0.2/16"
  },
  "cdd769411ae9...": {
    "Name": "frontend-nodejs",
    "IPv4Address": "172.19.0.4/16"
  },
  "cf3f827dfe15...": {
    "Name": "notification-service",
    "IPv4Address": "172.19.0.3/16"
  }
}

Enter fullscreen mode Exit fullscreen mode

If all three containers appear in the output, your services are connected successfully!


Step 7: Open in Browser

Navigate to: http://localhost:5003/

You'll see the frontend dashboard showing:

  • C# Service Data: Payment service response with notification
  • Python Flask Data: Email + SMS sent confirmation


Key Technical Concepts Learned

Why Container Names Work

Inside the Docker network:

  • http://auth-service:8080
  • http://notification-service:5000

Docker automatically resolves names to container IP addresses.

Why This Is Powerful

You built:

  • Cross-language architecture
  • Independent deployments
  • Internal service communication
  • Real microservices behavior

Common Problems & Fixes

Docker Not Running

Start Docker Desktop first.

Port Already Used

Change -p host:container

Example:

-p 6003:3000

Enter fullscreen mode Exit fullscreen mode

Container Cannot Reach Another Container

Ensure both are on same network:

docker network inspect network-microservice

Enter fullscreen mode Exit fullscreen mode


Final Thoughts

This project demonstrates that Docker is not just for packaging apps—it becomes an operating environment where multiple services can behave like a distributed system on one machine.

You used:

  • C#
  • Python
  • Node.js
  • Networking
  • APIs
  • Containers

That is real backend engineering practice.


Questions? Comments? Drop them below!

If you found this helpful, give it a and share with your dev community!


Author: Sumeet Dugg

Published: April 29, 2026