https://github.com/queukat/microservices-cicd-pipeline
https://github.com/queukat/microservices-cicd-pipeline
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/queukat/microservices-cicd-pipeline
- Owner: queukat
- Created: 2024-10-16T10:09:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-16T10:48:10.000Z (over 1 year ago)
- Last Synced: 2025-03-23T15:15:56.526Z (about 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automated Deployment Pipeline with Jenkins and Docker
This project demonstrates the automation of the CI/CD process for a Python web application using Jenkins and Docker.
## Prerequisites
- Docker installed
- Jenkins installed
- Git installed
## How to Run
1. Clone the repository:
```bash
git clone https://github.com/yourusername/automated-deployment-pipeline.git
```
2. Navigate to the project directory:
```bash
cd automated-deployment-pipeline
```
3. Build the Docker image:
```bash
docker build -t myapp:latest .
```
4. Run the Docker container:
```bash
docker run -p 5000:5000 myapp:latest
```
5. Open your browser and go to http://localhost:5000 to see the running application.