Learning machine learning? Try my machine learning flashcards or Machine Learning with Python Cookbook.
Export All Files And Folders Out Of A Container
Run Detached Container
Create and start (docker run
) the detached (--detach
) the Docker image called special-project (--name special-project
) based on the python:3.8-slim
Docker image.
docker run --detach --name special-project python:3.8-slim
427e7823c84bdb600ead8411fe3b6685ab7c8e5a000c9e30c136c977d557a55c
Export All Files And Folders Out Of Container
Export all files and folders (docker container export
) from the container special-project
and save them into a file (--output
) called special-projects.tar
.
docker container export --output special-project.tar special-project
A tar file has now been created with the container’s complete filesystem.