Method 1 – using basic shell command
# Get the PID
ps -ef | grep <containerID>
# View all files
ls -ltr /proc/<PID>/root/
Method 2 – using kubectl , docker cp command
docker cp containerID:/path/to/file /path/file
kubectl cp pod_name:/path/to/file /path/file