Skip to main content

Command Palette

Search for a command to run...

What's New In Docker 2023?

Published
2 min read
What's New In Docker 2023?
P

Pradumna is a Developer Advocate, Docker Captain, and a DevOps and Go Developer. He is passionate about Open Source and has mentored hundreds of people to break into the ecosystem. He also creates content on X (formerly Twitter) and LinkedIn, educating others about Open Source and DevOps tools. Pradumna enjoys engaging with people in person and delivering talks.

This year, DockerCon was amazing. There were lots of significant announcements across different domains, such as Open Source, AI, security, supply chain, and more.

Here are some of the highlights:

Docker AI

Docker AI Poster

With Docker AI, Docker aims to eliminate repetitive, mundane configuration tasks. It is employed throughout the development lifecycle for fast, easy, and portable application development.

Their focus is on 4 pillars:

  • Faster time to code

  • Hundreds of AI/ML models & images

  • Reproducibility

  • Security by default


Docker Compose Watch

Compose Watch Banner

Hot reloading has become feasible in the Docker Compose application. In the past, the process of rebuilding and recreating the container was tedious and disrupted the workflow.

Earlier, developers resorted to creating bind mounts, but this approach wasn't ideal since it functioned differently across diverse operating systems.

The implementation is straightforward. By using the watch keyword, one can define necessary actions, such as sync and rebuild.

services:
  web:
    build: .
    command: npm start
    develop:
      watch:
        - action: sync
          path: ./web
          target: /src/web
          ignore:
            - node_modules/

Docker Debug

Docker Debug Poster

Docker Debug offers an integrated toolbox to debug containerized apps both locally and remotely. It allows users to view logs, run commands, check files, and so much more. It aids in debugging and quickly resolving problems.


Next-Gen Docker Build

Docker Next-Gen Docker Build Poster

Docker images are now being constructed 39x faster with the next-gen Docker Build. The building process takes place in the cloud, and users can share the build cache with their teammates. The primary emphasis is on reducing waiting time and honing in on development.


Docker Scout

Docker Scout offers insights into the security of container images, enabling users to make informed decisions on addressing vulnerabilities and enhancing the overall security of their applications.

The core focus is on bolstering security throughout the entire SDLC.

Docker Scout Poster


Summary

DockerCon showcased exciting updates this year in areas like AI and security. Some highlighted features include faster Docker image creation, enhanced debugging tools, and improved security measures.

More from this blog

P

Pradumna's Blog

52 posts

Pradumna is a Developer Advocate, Docker Captain, and a DevOps and Go Developer. He is passionate about Open Source and has mentored hundreds of people to break into the ecosystem.