Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1008 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 1008 Bytes

Getting Started with Create React App

Goto DockerHub

Docker Image Name

vijaykumar151096/blogger_frontend

Steps to Run Application With Docker

The Application Will be Hosted in PORT : 3000

  • Pull the Images from docker hub
    • docker pull vijaykumar151096/blogger_frontend
  • Run the Docker using Below Command
    • docker run -d -p 3000:3000 --name blogger_frontend vijaykumar151096/blogger_frontend
  • To Stop
    • docker stop blogger_frontend
  • To Start
    • docker start blogger_frontend

Steps to Run Application Without Docker

The Application Will be Hosted in PORT : 3000

  • Goto Terminal
  • Type the Following Command to start the application
    • npm start

To Run The Application using docker-compose as both front-end and back-end

  • Run the Following docker-compose command to Start
    • docker-compose -f docker-compose.yml up -d
  • Run the Following docker-compose command to Stop
    • docker-compose -f docker-compose.yml down