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)
- Host: GitHub
- URL: https://github.com/viktoriaafitova/react-docker-template
- Owner: ViktoriaAfitova
- Created: 2024-07-15T07:46:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-01T07:55:22.000Z (almost 2 years ago)
- Last Synced: 2025-01-05T17:25:35.780Z (over 1 year ago)
- Topics: docker, docker-compose, express, github-actions, nodejs, postgresql, react
- Language: JavaScript
- Homepage:
- Size: 241 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```