Linux serverlinux web serverNETWORK ADMINISTRATIONS

Deployment of a web application through a docker container in Ubuntu Linux VM

This video explains in easy steps to deploy a web application in a docker container. Please watch my previous video that explains about the docker engine installation

github url for memory game:
https://github.com/solomonnyamson/memory-game

Contents in the Docker file (copy & paste the below content, name of the file should be “Dockerfile” and the file is assumed to be present in the same directory as the web application code)
FROM httpd:2.4
COPY . /usr/local/apache2/htdocs/

source

by chosen_to_teachtech

linux web server