Building Docker Image
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 …
Running App in Docker (2)
Docker Compose
docker run
can be tedious sometimes if you have a lot of parameters to pass in or you need to re-run the container multiple times.
Docker Compose is a tool that can help you run the commands via …
Running App in Docker (1)
Docker Run
When you are likely to run a container on your own machine, you need two steps.
- Find the image repository and a proper tag.
- Use
docker run
to set container runtime parameters and then start.
Example
We'd like …
1998 ~ 2018 -- from Server to Container
A recap from an internal sharing session
The technology develops in two ways, improving with the existing one and taking a breaking through.
20 years ago, in the year of 1998, the servers were running on physical servers. There is …