Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omjaju18/django-nginx-db-dockerproject
Deploying a Web Application with NGINX and MYSQL
https://github.com/omjaju18/django-nginx-db-dockerproject
django docker docker-compose docker-container docker-image dockerfile dockerhub mysql
Last synced: 1 day ago
JSON representation
Deploying a Web Application with NGINX and MYSQL
- Host: GitHub
- URL: https://github.com/omjaju18/django-nginx-db-dockerproject
- Owner: omjaju18
- Created: 2025-01-05T08:13:47.000Z (5 days ago)
- Default Branch: main
- Last Pushed: 2025-01-05T08:54:22.000Z (5 days ago)
- Last Synced: 2025-01-05T09:21:57.169Z (5 days ago)
- Topics: django, docker, docker-compose, docker-container, docker-image, dockerfile, dockerhub, mysql
- Language: JavaScript
- Homepage: http://localhost:8000/
- Size: 1.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Notes App with Docker
This is a simple notes app built with React and Django.## Requirements
1. Python 3.9
2. Node.js
3. React## Installation
1. Clone the repository
```
git clone https://github.com/omjaju18/django-nginx-db-dockerproject/
```2. Build the app
```
docker build -t notes-app .
```3. Run the app
```
docker run -d -p 8000:8000 notes-app:latest
```## Nginx
Install Nginx reverse proxy to make this application available
`sudo apt-get update`
`sudo apt install nginx`## Outputs
![image](https://github.com/user-attachments/assets/91db04a6-4d12-4197-a5ce-2f9ae93546e6)
![image](https://github.com/user-attachments/assets/dfd53150-7a6f-403e-b1ca-0352b8f5e151)
![image](https://github.com/user-attachments/assets/4f3ecede-d9a0-4efa-85be-e591b44595a9)