Skip to content

Dockerizing a fullstack app (frontend+backend) with Postgres + Redis + Nginx. Build and deploy with docker-compose.yml file.

Notifications You must be signed in to change notification settings

faysalmehedi/fullstack-docker-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project: Dockerizing a fullstack app (frontend+backend) with Postgres, Redis and Nginx

This project was basically from solutions to exercise of course https://devopswithdocker.com/. A frontend app which built on React, which accept request on port 5000. A backend app built on Go language, which accepts connections on port 8080. A SQL database server 'postgresql' and in-memory database 'redis' is connected to the backend server. Nginx will function as a reverse proxy. The requests arriving at anything other than /api will be redirected to frontend container and /api will get redirected to backend container. At the end the frontend is accessible simply by going to http://localhost. See the project diagram for understanding the app architecture.

Steps for Running

Features

  • Frontend written in React
  • Backend written in Go
  • PostgreSQL database connected to the Backend
  • In-memory database Redis to the Backend
  • Nginx as a Reverse Proxy

Project Diagram

Project Diagram

Exercise done on this project

  • Ex-1.12: Create a Dockerfile for Frontend and listens on port 5000
  • Ex-1.13: Create a Dockerfile for Backend and listens on port 8080
  • Ex-1.14: Exposed ports for frontend and backend correctly and frontend gets response from backend api when talk to browser
  • Ex-2.3: Configure the backend and frontend to work in docker-compose.
  • Ex-2.4: Using Docker Networking, redis is connected to the backend as docker container
  • Ex-2.6: connected to a postgres database to save messages. postgreql starts as docker container and configured to docker-compose file.
  • Ex-2.8: Add Nginx which will function as a reverse proxy (see the image above). The requests arriving at anything other than /api will be redirected to frontend container and /api will get redirected to backend container.
  • Ex-2.9-2.10: Complete all configurations on docker-compose so that the app start when "docker-compose up" command given and all services are accesible.
  • Ex-3.3: For security reasons, removed the root access and make sure the containers start their processes as a non-root user.
  • Ex-3.4-3.5: Optimize the size of the images
  • Ex-3.6: Multi-stage build for the backend app

Complete Project Screenshot

Project Diagram

About

Dockerizing a fullstack app (frontend+backend) with Postgres + Redis + Nginx. Build and deploy with docker-compose.yml file.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages