Building Docker Image

Sat 08 September 2018

Dockerfile

Docker images are built from layered containers. The Dockerfile is a tool that lets you define reproducable docker image.

Generally, we are doing a few things inside a Dockerfile to define an image:

1. Basic Running Environment

Is your …

Category: Container

Tagged: docker container


Running App in Docker (1)

Sat 08 September 2018

Docker Run

When you are likely to run a container on your own machine, you need two steps.

  1. Find the image repository and a proper tag.
  2. Use docker run to set container runtime parameters and then start.

Example

We'd like …

Category: Container

Tagged: docker container


Page 1 of 1