0 votes
in Docker by

What command can you run to export a docker image as an archive?

1 Answer

0 votes
by
This can be done using the docker save command and the syntax is: docker save -o <exported_name>.tar <container-name>
...