Skip to main content
Code and think

Docker export images

If you want to move the environment offline or simply to export (and import) images you can do that with save/load commands.
Save an image to a file (export it): docker save -o ./docker_images/activemq.tar rmohr/activemq:5.15.9
Reference
To import it use: docker load -i ./docker_images/activemq.tar rmohr/activemq:5.15.9
Reference