Build docker image
View running processes
View all processes
Run containers Docker command: docker run options image-name command arg Example: Running a container from the image alpine. Docker run image-name docker run image-name command docker run image-name command arg docker run alpine docker run alpine ls docker run alpine ping 192.168.3.1 Common options: Remove the container when it exits Give the container a name Allocate a terminal. Docker Cheat Sheet Build Build an image from the Dockerfile in the current directory and tag the image docker build -t myimage:1.0. List all images that are locally stored with the Docker Engine docker image ls Delete an image from the local image store docker image rm alpine:3.4 Share Run Run a container from the Alpine version 3.9.
Run an image in a new container daemonized Gregory isaacs greatest hits zip.
Run an image in interactive mode with the command /bin/bash
Run an image in interactive mode with the command /bin/bash
and link the ports.
Run an image with an ENTRYPOINT command in interactive mode with the command /bin/bash
Docker Compose Cheat Sheet
Run an image in interactive mode with the command /bin/bash
mounting the host director /var/app/current
to the container directory /usr/src/app
Docker Run Cheat Sheet Printable
Run an image in interactive mode with the command /bin/bash
setting the environments variables FOO
and BAR