Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
Docker

Docker: Essential Security Best Practices

- 09.07.26 - ErcanOPAK

🔒 Docker Security Best Practices

Containers have security risks. Docker security protects your apps. Minimal images, least privilege, secure configuration.

📝 Image Security

# Use official images
FROM node:18-alpine  # Official, minimal
FROM postgres:15    # Official, trusted

# Use specific versions (not latest)
FROM python:3.11-slim
FROM nginx:1.25

# Scan for vulnerabilities
docker scan nginx:latest
docker scan --json myimage:latest
trivy image myapp:latest

# Minimize image layers
RUN apt-get update && apt-get install -y \
    package1 \
    package2 \
    && rm -rf /var/lib/apt/lists/*

# Use multi-stage builds
FROM node:18 AS builder
# Build stage
FROM nginx:alpine
# Runtime stage (smaller)

# Copy only what's needed
COPY --from=builder /app/dist /usr/share/nginx/html

# Use .dockerignore
# .dockerignore
node_modules
.git
.env
*.log

🎯 Runtime Security

# Run as non-root user
FROM node:18-alpine
RUN addgroup -g 1001 -S nodejs && \
    adduser -S nodejs -u 1001
USER nodejs

# Drop capabilities
docker run --cap-drop=ALL --cap-add=NET_BIND_SERVICE myapp

# Use seccomp profiles
docker run --security-opt seccomp=./seccomp.json myapp

# Use AppArmor
docker run --security-opt apparmor=myapp-profile myapp

# Read-only root filesystem
docker run --read-only myapp

# No new privileges
docker run --security-opt no-new-privileges myapp

# Docker Compose
version: '3.8'
services:
    app:
        image: myapp:latest
        security_opt:
            - no-new-privileges:true
        cap_drop:
            - ALL
        cap_add:
            - NET_BIND_SERVICE
        read_only: true
        user: "1001:1001"

✅ Security Checklist

  • ✓ Use official, minimal images
  • ✓ Scan for vulnerabilities
  • ✓ Run as non-root user
  • ✓ Drop unnecessary capabilities
  • ✓ Use read-only filesystem
  • ✓ Secure network configuration

“Docker security is critical. Minimize risks, protect data. Essential for production containers.”

— Security Engineer

Related posts:

Docker: Use Docker Compose Networking for Multi-Container Apps

Docker: Never Write Logs to Files Inside Containers

Docker: Use Docker System to Clean Up Unused Resources

Post Views: 0

Post navigation

Kubernetes: Use PodDisruptionBudget for High Availability
AI Prompt: Automated Code Review Assistant

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (597)
  • Add Constraint to SQL Table to ensure email contains @ (582)
  • Average of all values in a column that are not zero in SQL (545)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (512)
  • Find numbers with more than two decimal places in SQL (460)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes
  • Ajax: Use Axios for HTTP Requests
  • JavaScript: Understand Hoisting
  • HTML: Use Web Storage for Client-Side Data
  • CSS: Use Filter Effects for Visual Magic
  • Windows 11: Unlock God Mode for All Settings

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (960)
  • How to add default value for Entity Framework migrations for DateTime and Bool (898)
  • How to make theater mode the default for Youtube (857)
  • Get the First and Last Word from a String or Sentence in SQL (840)
  • How to select distinct rows in a datatable in C# (814)

Recent Posts

  • C#: Use Using Statements for Resource Management
  • C#: Use Lambda Expressions for Concise Code
  • SQL: Use GROUP BY for Data Aggregation
  • .NET Core: Master Routing for Clean URLs
  • Git: Use Reset to Undo Local Changes

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com