Login
Remember
Register
Ask a Question
What command can you run to export a docker image as an archive?
0
votes
asked
Oct 9, 2024
in
Docker
by
rajeshsharma
What command can you run to export a docker image as an archive?
docker
image
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 9, 2024
by
rajeshsharma
This can be done using the docker save command and the syntax is: docker save -o <exported_name>.tar <container-name>
...