An open API service indexing awesome lists of open source software.

https://github.com/viktoriaafitova/react-docker-template

DevOps (Containerization and Docker, Github Actions)
https://github.com/viktoriaafitova/react-docker-template

docker docker-compose express github-actions nodejs postgresql react

Last synced: 3 months ago
JSON representation

DevOps (Containerization and Docker, Github Actions)

Awesome Lists containing this project

README

          

# React application using Docker Image

## Commands to know

Start:

```shell
npx create-react-app my-app
cd my-app
npm start
```

Start services:

```shell
docker-compose up
```

Install dependencies:

```shell
npm install express
```

```shell
npm install pg
```