Run a docker container
docker run container-id-here
Stop a Docker container
docker stop container-id-here
View running containers
docker ps -a
To view the files of container
docker exec -t -i container-id-here /bin/bash
move files from local to a docker container
docker cp container-id-here:/etc/murmur.ini /etc/murmur.ini
we used the murmur.ini file as an example
View information from the logs. We used mumble in this case.
docker logs murmur 2>&1 | grep Password