Skip to content

Latest commit

 

History

History
35 lines (16 loc) · 728 Bytes

Readme.md

File metadata and controls

35 lines (16 loc) · 728 Bytes

Apache Docker Demo

This is a simple demo project that shows how to run an Apache web server inside a Docker container.

Prerequisites

  • Docker must be installed on your machine.

Usage

  1. Clone this repository:

git clone https://github.com/bhowmickkrishnendu/apache-docker-demo.git

  1. Navigate to the cloned directory:

cd apache-docker-demo

  1. Build the Docker image:

docker build -t apache-demo .

  1. Run the Docker container:

docker run -d -p 8080:80 apache-demo

  1. Open your browser and go to http://localhost:8080. You should see the Apache default page.

License

This project is licensed under the MIT License. See the LICENSE file for details.