Skip to content

Latest commit

 

History

History
100 lines (64 loc) · 2.65 KB

README.md

File metadata and controls

100 lines (64 loc) · 2.65 KB

 

Docker

Github top language Github language count Repository size License

About   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

This is a simple Nginx web server that runs on a Docker container.

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Docker installed.

🏁 Starting

# Clone this project to your local machine
git clone https://github.com/devenes/docker-nginx.git
# Access the project directory
cd docker-nginx
# Build Docker image 
docker build -t devenes/webapp:1 .
# Run the image in a container
docker run --rm -i -t -d -p 8080:80 devenes/webapp:1

The server will initialize in the http://localhost:8080

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by devenes

 

Back to top