This is a simple demo project that shows how to run an Apache web server inside a Docker container.
- Docker must be installed on your machine.
- Clone this repository:
git clone https://github.com/bhowmickkrishnendu/apache-docker-demo.git
- Navigate to the cloned directory:
cd apache-docker-demo
- Build the Docker image:
docker build -t apache-demo .
- Run the Docker container:
docker run -d -p 8080:80 apache-demo
- Open your browser and go to
http://localhost:8080
. You should see the Apache default page.
This project is licensed under the MIT License. See the LICENSE file for details.