http://snippets.bentasker.i2p/posts/misc/docker-cli-cheat-sheet.html
It's syntax is fairly simple, but sometimes you need a small prompt, this page is that prompt Details Language: Misc Snippet # Run an image docker run influxdb : 2.0 # Run an image and pass an environment var docker run - e MY_VAR = foo influxdb : 2.0 # Run an image and mount a volume docker run - v influx : / var / lib / influxdb2 influxdb : 2.0 # Run an image and map a port to a port on the container docker run - p 8086 : 8086 - v influx : / var / lib /...