Create and start container from image and attach log to console at oncedocker run hello-world:linux
Run without attaching console (useful for running servers in containers)docker run -d server_image_name
Run container with providing a name to itdocker run --name container-name image-name
Port bindingdocker run -p <port_out>:<port_in> image-name
Passing environment vaiabledocker run -e VARIABLE_NAME=value