Commiting Changes to Docker images and containers

This is a walkthrough of how to commit changes to docker images and containers. You need to do this if you make configuration changes to any docker images. By committing changes to the docker images you can backup and clone them.

Docker is a very powerful tool you can use to isolate applications, therefore, you won’t have them on a single server. However, some docker images don’t save changes to their container when a restart happens. You will notice that when a reboot or unexpected outage happens all your configuration will be gone since the creation of container. The Ubiquiti Unifi Controller docker image is a good example of this.

Here are the following commands to commit those changes to a new image

sudo docker ps -l
Note: This shows all your containers you need to copy Container ID for the one you want to commit changes on.

sudo docker commit CONTAINER_ID_GOES_HERE IMAGENAME:TAG
Example Syntax: sudo docker commit 520b0f024bf6 unifi:latest-06-21-2018

docker

Now if you have any issues you can simply create a new container using the image you created above.