Terminus by Warp
Save Docker Container As Image

Save Docker Container As Image

Razvan Ludosanu
Razvan Ludosanu
Founder, learnbackend.dev

To help improve the portability, reproducibility, and debugging of their applications, Docker allows developers to build images from running or stopped containers. This way, developers can easily:

  • Capture the required dependencies and configurations to ensure that the application runs the same way every time.
  • Package the application to make it deployable on any operating system.
  • Create a snapshot of their application to fix a specific problem without corrupting a production container caused by unforeseen side effects.

The Short Answer

To create an image from a container, you can use the [.inline-code]docker commit[.inline-code] command:

 $ docker commit <container> <image>

Where:

  • [.inline-code]container[.inline-code] is the name or the ID of the container that can be obtained using the [.inline-code]docker ps[.inline-code] command.
  • [.inline-code]image[.inline-code] is the name of the image you want to create.

For example:

 $ docker commit 4b2386a65651 node-server:beta

Note that if the container you are creating an image from is running, Docker will automatically pause it while the image is committed, in order to reduce the likelihood of encountering data corruption during this process.

[#easily-recall-syntax]Use AI in your Warp terminal to easily recall the syntax[#easily-recall-syntax]

Warp, our free terminal app, has a handy feature called Artificial Intelligence Command Search (AICS) that helps generate shell commands with natural language. If you can't remember which Docker command is used to create an image from a container, you can type a [.inline-code]#[.inline-code] followed by a short sentence describing your command:

[#overwriting-dockerfile]Overwriting Dockerfile Instructions[#overwriting-dockerfile]

A Dockerfile is a text file that contains all the necessary instructions for building a Docker image. These instructions can be used for installing and configuring command line tools, declaring environment variables, exposing ports, copying files from the local environment, and so on.

When creating an image from a container, these instructions can be overwritten using the [.inline-code]-c[.inline-code] flag (short for change).

For example, to change an environment variable:

 $ docker commit -c 
 "ENV NODE_ENV=development" <container> <image>

Note it is possible to change multiple instructions at once:

 $ docker commit -c 'WORKDIR /app' -c 
 'CMD ["node", "app.js"]' <container> <image>

[#volumes]A word on volumes[#volumes]

Since the commit operation does not include any data contained in volumes mounted inside the container, you will have to manually attach the desired volume when starting the container based on the image you just created using the [.inline-code]-v[.inline-code] flag (short for volume):

 $ docker run -v my-volume:/app my-image

You can read more about volumes and the [.inline-code]docker commit[.inline-code] command in the official Docker documentation.

Experience the power of Warp

  • Write with an IDE-style editor
  • Easily navigate through output
  • Save commands to reuse later
  • Ask Warp AI to explain or debug
  • Customize keybindings and launch configs
  • Pick from preloaded themes or design your own
brew install --cask warp
Copied!
Join the Windows waitlist:
Success! You will receive an email from Warp when the release is available to download.
Oops! Something went wrong while submitting the form.
Join the Linux waitlist:
Success! You will receive an email from Warp when the release is available to download.
Oops! Something went wrong while submitting the form.
Join the Linux waitlist or join the Windows waitlist
Join the Windows waitlist:
Success! You will receive an email from Warp when the release is available to download.
Oops! Something went wrong while submitting the form.