
Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. We decided to Dockerize the project Hawk for a better performance and architectural independence.

Docker gives you the ability to write your rust code once and run everywhere you want.
Because Rust provides us a binary file after compilation of Rust code then it’s quite easy to build a docker image of Rust application.
Step 1: Write docker file
Docker file is the main source of the building a docker image. It is basically a configuration file of the docker image.
For the DockerFile of Hawk refer this.
Step 2: Docker build (with docker file)
After creating a Dockerfile the next step is to build the docker file to create a docker image. To build a Docker image we have to run docker build command.
With docker build, we have to provide some instructions which are:
docker build -t docker-image-name Dockerfile-path
Step 3: Run docker image
After building a docker image the final step is to run the docker image.
docker run docker-program-image
Thank you for coming this far in the blog. If you have any suggestions for the blog/project, you can surely give your comments.
For complete information about Project Hawk, you can check this Blog.
For more reference and contributing to our open source project Hawk, you can visit here.
