This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| # HINTS | |
| ## Add self to the docker group (run docker without sudo) | |
| sudo gpasswd -a myusername docker | |
| ## Get container ID | |
| alias dl='docker ps -l -q' | |
| ## Get container IP | |
| docker inspect --format='{{ .NetworkSettings.IPAddress }}' `dl` | |
| docker inspect `dl` | grep IPAddress | cut -d '"' -f 4 |