Description:
#List all docker container runing
docker container ls
#get into the shell environment
docker exec -it {container} /bin/bash
#get into the shell environment with specific user
docker exec -it --user {user} {container} /bin/bash
#copy files
#if add {container}: as prefix, the path should be pointing to path
docker cp {container}:{path} {destination_path}
#check docker cpu,memory and io usage
docker stats
``