Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# react-nodejs-docker-compose
Example project on how to develop project on Docker Compose

See the tutorial [here](https://medium.com/bb-tutorials-and-thoughts/react-local-development-with-docker-compose-5a247710f997)

## Run locally

```shell
// install server side dependencies and start
cd api
npm install
npm run dev
// install react dependencies and start
cd my-app
npm install
npm start
```

## Run with Docker-compose

```bash
docker compose up -d
```