All Projects → sujaykundu777 → mern-docker

sujaykundu777 / mern-docker

Licence: other
Jumpstart your MERN Full Stack App development 🧑‍✈️

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Dockerfile
14818 projects
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to mern-docker

mern-boilerplate
React + Express + Webpack + Mongo = MERN Stack Boilerplate
Stars: ✭ 39 (-41.79%)
Mutual labels:  mern
mern-apollo-graphql-boilerplate
MERN + Apollo-Graphql Boilerplate
Stars: ✭ 21 (-68.66%)
Mutual labels:  mern
MERN A to Z Client
This tutorial is all about the MERN stack. We are going to explore this popular stack and how to use it by developing a simple CRUD (create, read, update, and delete) application from scratch. In this part, we will work with React to build out the front-end portion of our app.
Stars: ✭ 27 (-59.7%)
Mutual labels:  mern
mern-stack-crud
MERN stack (MongoDB, Express, React and Node.js) create read update and delete (CRUD) web application example
Stars: ✭ 142 (+111.94%)
Mutual labels:  mern
inCyberPunk2022
👾 https://cybersocial.herokuapp.com/   C̵̡̡͓̪̺̲̺̳̭̱̩͖͔̽̈́͜y̵̢̺̮̥̠̲̼̫͗b̴̲͇̟̭̹͆͒̈́̒͋̃̌̇̈̆̚͠͠ȅ̷̡̢̩̺̏r̴̢̛̹̲̜͙͉̩̩̣͉̺͂̀́̈́̇͛͋̊̉̈́̇P̵̡͊̚ų̵̙̣͓̤̼̭̤̥̯̻̯̒ͅň̸̛̯͕̦̦͓̙̋͐̈́́̉ͅḱ̷̡̪͚͉̟̘̳̯̳͉̈́͐͂̇̾͑̕̕͝ͅ
Stars: ✭ 28 (-58.21%)
Mutual labels:  mern
MCW-OSS-PaaS-and-DevOps
MCW OSS PaaS and DevOps
Stars: ✭ 49 (-26.87%)
Mutual labels:  mern
amazin
A MERN-stack app for eCommerce platform, Webshop, Web Store. Storybook: https://www.amazin.one/ Alternative: https://ntrix.github.io/amazin-story
Stars: ✭ 27 (-59.7%)
Mutual labels:  mern
erp-crm
IDURAR is Open Source ERP/CRM Based on Mern Stack (Node.js / Express.js / MongoDb / React.js ) with Ant Design (AntD) and Redux
Stars: ✭ 18 (-73.13%)
Mutual labels:  mern
AquilaCMS
AquilaCMS is an Open Source and "all in one" ecommerce solution, self hosted, built using nodejs (MERN stack)
Stars: ✭ 69 (+2.99%)
Mutual labels:  mern
Netflix-Clone-MERN
A Netflix clone created with the MERN Stack
Stars: ✭ 37 (-44.78%)
Mutual labels:  mern
profile-store
Store profile links of people you admire, at one place. Made using MERN stack.
Stars: ✭ 37 (-44.78%)
Mutual labels:  mern
Stackoverflow-Clone-Frontend
Clone project of a famous Q/A website for developers built using MySQL, Express, React, Node, Sequelize 🌐
Stars: ✭ 379 (+465.67%)
Mutual labels:  mern
Manthan
Online testing platform
Stars: ✭ 80 (+19.4%)
Mutual labels:  mern
foodie
A social media for food lovers and for people looking for new ideas for their next menu.
Stars: ✭ 30 (-55.22%)
Mutual labels:  mern
BlogMan
A Blog Web Application, specially made for open source contribution. Simple MERN (MongoDB, ExpressJs, React, Node) technology has been used
Stars: ✭ 73 (+8.96%)
Mutual labels:  mern
Morning-Dash
Morning Dash is your day at a glance. See local weather, your commute, and calendar events all in one place.
Stars: ✭ 14 (-79.1%)
Mutual labels:  mern
photo gallery app
Photo gallery app created using MERN stack
Stars: ✭ 28 (-58.21%)
Mutual labels:  mern
Kurakoo
Kurakoo is an online community of people providing answers to questions just like Quora site. Kurakoo is especially for school-college students, people from around the different colleges visit Kurakoo to ask questions from a community of people who answer them.
Stars: ✭ 81 (+20.9%)
Mutual labels:  mern

MERN-Docker - Starter for building MERN Apps using Docker

MERN DOCKER diagram

Prerequisites:

You must have Docker Installed in your System !

How to run the App :

Article - Tutorial

In Development Mode :

First copy the content of docker-compose-dev.yml to docker-compose.yml

and also copy the content of server/src/index.dev.js to server/src/index.js

Run the app using :

$ docker-compose up --build --remove-orphans

or

$ docker-compose up -d

Above command will start the services on (-d) detach mode (similar like running the app in background)

Then you can check the status of the containers by running:

$ docker ps

The App should be App :

visit client : http://localhost:3000

visit server : http://localhost:8080

To check the status of the running containers :

docker-compose ps

In Production Mode :

First copy the content of docker-compose-prod.yml to docker-compose.yml

and also copy the content of server/src/index.prod.js to server/src/index.js

Run the app using :

$ docker-compose up --build -remove-orphans

The App should be up at http://localhost:8080

Build the image for server :

docker build -t myapp-server:1 . docker images docker run --name "myapp-server" -p 80:8080 myapp-server:1 docker ps

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].