Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 517 Bytes

File metadata and controls

25 lines (14 loc) · 517 Bytes

Installation using Containers

Docker

Refer Dockerfile

Building the image

In order to build the Docker image, run the following command

docker build -t johnsamuel .

Running the image

Once successfully built, run the following command

sudo docker run -dit -p 8080:80 johnsamuel

Browser

Open http://localhost:8080/.

Rebuilding the image

In order to build the Docker image, run the following command

docker build --no-cache -t johnsamuel .