How to create a new docker image from a running container on Amazon?
You can run docker commit
(docs) to save the container to an image, then push that image with a new tag to the registry.
To create a image from container execute the command below:
docker commit container_id imagename