Tuesday, 23 August 2016

Run Dart Http web server as a service using Docker


Dart is a general-purpose programming language originally developed by Google and later approved as a standard by Ecma (ECMA-408). It is used to build web, server and mobile applications, and for Internet of Things (IoT) devices.

Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. It packages your application into a standardized unit for software development. Docker containers wrap a piece of software in a complete filesystem that contains everything needed to run: code, runtime, system tools, system libraries – anything that can be installed on a server.

How to make dart http server as a service?

Step 1: Install Dart (https://www.dartlang.org/install)
Step 3: Write your first Dart Http web server (server.dart)
 Step 4: Write Docker file (Dockerfile)
Step 5: Build docker container
 

Step 6: Run docker container as a daemon
 
Note: Check whether the process is running using "sudo docker ps"

Open your browser and type the url "http://localhost:4040"



No comments:

Post a Comment