# Getting started with docker
# Introduction
This is about the Docker container build with Zest framework development environment
# Installation
Clone the Zest Docker repo provided by peter279k (opens new window)
git clone https://github.com/zestframework/zest-docker.git
1
Before building this Docker image, you should have the docker
command firstly
Then executing following command:
docker build -t zest-docker .
1
After building Docker image successfully, we should use this command to check Docker image is available:
docker images zest-docker
1
To run this environment as a Docker container, we can use this command:
docker run -d -p 8000:80 zest-docker
1
Then visit the http://localhost:8000
via we browser.
It will see the following captured picture and the container build is done