A demo web server application using the vibe.d web framework written in D. It uses dlang2/dmd-ubuntu
as base image. You can find the based image repository at https://github.com/dlang/dmd.
NOTE: If you are running Ubuntu or any Ubuntu-based Linux distribution, prefix the docker commands shown below with
sudo
.
You must have docker installed on your system. Whilst in the project root, run docker build -t TAGNAME .
to build.
Run the app with docker run -d -p 8080:8080 TAGNAME
. This will start the application on port 8080.
Stop docker process (application) with docker kill TAGNAME
.