Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 787 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 787 Bytes

Sample_docker-compose_project

A sample project using docker-compose with mysql, node, and react.js containers.

This project is meant to give you an understanding of how to formulate your docker development environment for developing web apps using node.js and mysql.

  • Express Server

  • React.JS Client

  • MySQL Database

SETUP

To run all you need to do is run docker-compose up to have the compose file automatically spin everything up for you. If you want to run a terminal in detached mode (so you can close the window and it wont stop the containers) then type docker-compose up -d for a headless start instead.

As always make sure to type docker-compose down to shut the containers down and close everything up.

Tutorial video coming soon!

Hope this helps!