This is a simple calculator implemented using HTML, CSS, and JavaScript. It is served using Nginx in a Docker container.
/
├── docker/
│ ├── Dockerfile
│ └── nginx.conf
├── src/
│ ├── index.html
│ ├── style.css
│ └── script.js
└── README.md
-
Clone this repository.
-
Navigate to the
docker/
directory. -
Build the Docker image:
docker build -t simple-calculator .
-
Run the Docker container:
docker run -d -p 8080:80 simple-calculator
-
Open your browser and navigate to
http://localhost:8080
to see the calculator.
This project was created as a simple example to demonstrate the use of HTML, CSS, JavaScript, and Docker.