til

#TIL : SSH to docker host in Docker for Mac

I learned on 2018-12-03 about docker, mac

When you need to debug the docker host of your docker server inside macOS. You can connect to its tty screen by

$ screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty

Then type ENTER to enter the screen and start debugging docker host.

To disconnect the screen, press "Ctrl + A > Ctrl + " and confirm "yes".

Enjoyed this?

Leave a kudo — it means a lot.

0