MaxenV / web100

Solving an assignment from the subject "Programming applications in cloud computing" by creating a suitable Dockerfile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is it

This is a solution to an assignment for the subject "Programming Applications in Cloud Computing" by creating a suitable Dockerfile.

Dockerfile content

The Dockerfile creates an image based on Ubuntu and serves an HTTP service on port 8080.
The default page provides information about the author.

Usage

Download

You can download and run container from dockerhub using command:

docker run -d -p 8080:8080 maxenv/web100:v1

Build

Alternatively, you can build it on your own using the command:

docker build -t image_name:version

then use

docker run -d -p 8080:8080 image_name:version

to create a container from this image.

Default page

When your container is running you can check the default page

About

Solving an assignment from the subject "Programming applications in cloud computing" by creating a suitable Dockerfile


Languages

Language:Dockerfile 53.4%Language:HTML 46.6%