Copy files between container and host
Copy file from container to host
docker cp mycontainer:/app/file.txt ./
Copy file from host to container
docker cp ./file.txt mycontainer:/app/