DEV Community

Ramkumar M N
Ramkumar M N

Posted on

Docker Security Best Practices for Beginners

Why Care About Docker Security?

Containers may feel isolated, but they share the host OS kernel. This means:

  • A compromised container could lead to host compromise.
  • Vulnerabilities in container images can be exploited.
  • Misconfigured containers can unintentionally expose sensitive data or ports.

Docker Security Best Practices for Beginners

This post is a follow-up to my previous article, Docker Like a Pro: Essential Commands and Tips, where we explored fundamental Docker commands and tips. Building upon that foundation, this guide focuses on essential security practices to help you build safer containers from the start.

Docker has revolutionized the way developers build, ship, and run applications. However, with great power comes great responsibility. Whether you're running containers in development or production, security should never be an afterthought.

In this post, I'll walk you through beginner-friendly Docker security practices that will help you build safer containers from the start. No enterprise jargon, just practical, actionable tips.


Why Care About Docker Security?

Containers may feel isolated, but they share the host OS kernel. This means:

  • A compromised container could lead to host compromise.
  • Vulnerabilities in container images can be exploited.
  • Misconfigured containers can unintentionally expose sensitive data or ports.

1. Use Official Images When Possible

Start by pulling images from Docker Hub’s verified publishers or official repositories.

Use this:

docker pull node:18
Enter fullscreen mode Exit fullscreen mode

Not this (could be outdated or malicious):

docker pull randomuser/node-custom
Enter fullscreen mode Exit fullscreen mode

Official images are maintained by Docker or trusted vendors and are regularly patched for known vulnerabilities.


2. Scan Images for Vulnerabilities

Use tools like Docker Scout, Trivy, or Snyk to detect vulnerabilities in your images:

Using Trivy:

trivy image your-image-name
Enter fullscreen mode Exit fullscreen mode

Scanning helps you identify outdated packages or CVEs (Common Vulnerabilities and Exposures) before they’re exploited.


3. Avoid Running as Root

By default, containers run as root. But you shouldn’t unless it’s absolutely necessary.

In your Dockerfile, create and switch to a non-root user:

FROM node:18

RUN useradd -m appuser
USER appuser

CMD ["node", "app.js"]
Enter fullscreen mode Exit fullscreen mode

Or use the --user flag when running a container:

docker run --user 1001:1001 your-image
Enter fullscreen mode Exit fullscreen mode

4. Minimize Your Image Size

Smaller images = fewer packages = fewer vulnerabilities.

Instead of:

FROM ubuntu
Enter fullscreen mode Exit fullscreen mode

Use:

FROM alpine
Enter fullscreen mode Exit fullscreen mode

Or use multi-stage builds to keep only what’s necessary in the final image.


5. Use .dockerignore Files

Just like .gitignore, this file prevents sensitive files from being added to your image.

Example .dockerignore:

node_modules
*.env
.git
Enter fullscreen mode Exit fullscreen mode

This keeps your image clean and prevents secrets from leaking.


6. Regularly Rebuild and Update Images

Even if your app code hasn’t changed, base images get outdated. Schedule rebuilds to pick up the latest patches:

docker pull node:18
docker build -t your-app .
Enter fullscreen mode Exit fullscreen mode

Use automated pipelines or GitHub Actions to do this regularly.


7. Limit Container Capabilities

By default, containers run with more privileges than they need. You can drop unnecessary capabilities using:

docker run --cap-drop ALL --cap-add NET_BIND_SERVICE your-image
Enter fullscreen mode Exit fullscreen mode

You can also use:

docker run --security-opt no-new-privileges:true ...
Enter fullscreen mode Exit fullscreen mode

This prevents the container from gaining more privileges via setuid or similar mechanisms.


8. Don’t Expose Unnecessary Ports

Only expose what you need. Instead of:

docker run -p 80:80 -p 3306:3306 ...
Enter fullscreen mode Exit fullscreen mode

Use:

docker run -p 80:80 ...
Enter fullscreen mode Exit fullscreen mode

And never bind containers to 0.0.0.0 in production unless you must. Use internal networking where possible.


9. Use Docker Bench for Security

Docker Bench for Security is an automated script that checks your Docker configuration against best practices.

git clone https://github.com/docker/docker-bench-security.git
cd docker-bench-security
sudo ./docker-bench-security.sh
Enter fullscreen mode Exit fullscreen mode

10. Enable User Namespace Remapping

User namespace remapping allows you to map the root user inside a container to a non-root user on the host system, adding an extra layer of security.

To enable user namespace remapping:

  1. Edit the Docker daemon configuration file (usually located at /etc/docker/daemon.json) and add:
   {
     "userns-remap": "default"
   }
Enter fullscreen mode Exit fullscreen mode
  1. Restart the Docker daemon:
   sudo systemctl restart docker
Enter fullscreen mode Exit fullscreen mode

This configuration ensures that even if a container is compromised, the potential damage to the host system is minimized.


11. Implement Resource Limits with Cgroups

Control groups (cgroups) allow you to limit the resources (CPU, memory, disk I/O, etc.) that a container can use, preventing a single container from consuming all host resources.

When running a container, you can set resource limits:

docker run -d --memory="512m" --cpus="1.0" your-image
Enter fullscreen mode Exit fullscreen mode

This command limits the container to 512MB of memory and 1 CPU core.


12. Scan for Secrets in Images

Leaking secrets (like API keys or passwords) in container images is a common security risk. Use tools like git-secrets or truffleHog to scan your codebase and images for secrets before building and pushing them.

For example, using truffleHog:

trufflehog filesystem --directory=./your-codebase
Enter fullscreen mode Exit fullscreen mode

Regularly scanning helps prevent accidental exposure of sensitive information.


13. Use Security Profiles like AppArmor or SELinux

Linux security modules like AppArmor and SELinux provide mandatory access controls that can confine the actions of processes, including those in Docker containers.

To use AppArmor with Docker:

  1. Ensure AppArmor is installed and enabled on your host system.

  2. Create or use an existing AppArmor profile.

  3. Run your container with the AppArmor profile:

   docker run --security-opt apparmor=your-profile-name your-image
Enter fullscreen mode Exit fullscreen mode

This adds an additional layer of security by restricting what the containerized process can do.


14. Use Rootless Docker Mode

Running Docker in rootless mode means the Docker daemon and containers run as a non-root user, reducing the risk of privilege escalation.

To set up rootless Docker:

  1. Install Docker as a non-root user:
   dockerd-rootless-setuptool.sh install
Enter fullscreen mode Exit fullscreen mode
  1. Start the Docker daemon in rootless mode:
   systemctl --user start docker
Enter fullscreen mode Exit fullscreen mode

Note: Rootless mode has some limitations, so ensure it fits your use case.


15. Secure the Docker Daemon Socket

The Docker daemon socket (/var/run/docker.sock) is a powerful interface. Exposing it can lead to security vulnerabilities.

  • Avoid exposing the Docker socket over TCP. If you must, secure it with TLS.

  • Use SSH to access the Docker daemon remotely:

  docker -H ssh://user@remote-host
Enter fullscreen mode Exit fullscreen mode

This approach leverages SSH's security features, reducing the risk associated with exposing the Docker socket.


16. Implement Network Segmentation

By default, Docker containers can communicate with each other over the default bridge network. To enhance security:

  • Create user-defined bridge networks: This allows you to control which containers can communicate.
  docker network create my-secure-network
Enter fullscreen mode Exit fullscreen mode
  • Run containers on the custom network:
  docker run --network=my-secure-network your-image
Enter fullscreen mode Exit fullscreen mode
  • Use firewall rules to restrict traffic: Configure host-level firewalls (like iptables or ufw) to control inbound and outbound traffic to containers.

Network segmentation limits the potential impact of a compromised container.


17. Regularly Audit and Monitor Containers

Continuous monitoring helps detect and respond to security incidents promptly.

  • Use tools like Falco: Falco monitors container activity and detects anomalous behavior.
  sudo falco
Enter fullscreen mode Exit fullscreen mode
  • Set up logging and alerting: Integrate container logs with centralized logging systems (like ELK Stack) and set up alerts for suspicious activities.

Regular audits and monitoring are essential for maintaining a secure container environment.


By implementing these best practices, you can significantly enhance the security of your Docker containers. Remember, security is an ongoing process, and staying informed about the latest threats and mitigation strategies is crucial.


Wrapping Up

Docker makes development faster, but secure containers take a bit of discipline. Here’s your quick-start checklist:
• Use official images
• Scan for vulnerabilities
• Avoid root users
• Ignore sensitive files
• Update images regularly
• Limit container privileges
• Restrict exposed ports

Even small improvements go a long way. Start simple and level up your container security over time.


disclaimer “This article was created with the help of AI”


Let’s Connect!

💼 LinkedIn | 📂 GitHub | ✍️ Dev.to | 🌐 Hashnode


💡 Join the Conversation:

  • Found this useful? Like 👍, comment 💬
  • Share 🔄 to help others on their journey
  • Have ideas? Share them below!
  • Bookmark 📌 this content for easy access later

Let’s collaborate and create something amazing! 🚀

Top comments (5)

Collapse
 
webdeveloperhyper profile image
Web Developer Hyper

Happy to see you again! 😊 Very informative post, as always. Docker security is an important topic, but it's a little complicated. Thank you for sharing!

Collapse
 
ramkumar-m-n profile image
Ramkumar M N

Thank you so much WDH! 😊 It feels great to be back after being away for almost a year.
Yes, I totally agree Docker security is definitely a complex maze, which is exactly why I wanted to try and break it down.

I'm officially getting back into writing and have a lot of exciting stuff planned. Going forward, I'll be sharing a lot more about AI, agents, dev tools, vibe coding, and more. Stay tuned! 🚀

Collapse
 
webdeveloperhyper profile image
Web Developer Hyper

Great! AI is a big trend right now, and I love AI too. Your post will definitely help many people. I'm looking forward to your future posts! 😄

Collapse
 
sloan profile image
Sloan the DEV Moderator

Hey, this article appears to have been generated with the assistance of ChatGPT or possibly some other AI tool.

We allow our community members to use AI assistance when writing articles as long as they abide by our guidelines. Please review the guidelines and edit your post to add a disclaimer.

Failure to follow these guidelines could result in DEV admin lowering the score of your post, making it less visible to the rest of the community. Or, if upon review we find this post to be particularly harmful, we may decide to unpublish it completely.

We hope you understand and take care to follow our guidelines going forward!

Collapse
 
ramkumar-m-n profile image
Ramkumar M N • Edited

Hi Sloan,

Just for context, I only used an AI tool to help reword the intro paragraph, the rest of the article is entirely my own original work.

I totally get that you need to enforce the guidelines, but to be honest, seeing a generic, copy-pasted warning and highlighting word like “harmful” is a bit discouraging. I can see many or your moderation have such comments.

we put a lot of time into writing blogs to share knowledge to communities ! In the future, it would be awesome if the moderation team could point out specific concerns rather than dropping a blanket statement on posts.

Anyway, the disclaimer is up now.

Thank you