Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maxgfr/docker-express-react

Dockerize in production a react application using express as server
https://github.com/maxgfr/docker-express-react

containerization docker docker-react dockerfile express production react

Last synced: 7 days ago
JSON representation

Dockerize in production a react application using express as server

Awesome Lists containing this project

README

        

# docker-express-react

Dockerize in production a react application using express as server

## Run application without docker-compose

```
git clone https://github.com/maxgfr/docker-express-react.git
cd docker-express-react
docker build -t docker-express-react .
docker run -it -p 80:80 docker-express-react # Then you can go to this URL : https://localhost/
```

## Running application using docker-compose

```
git clone https://github.com/maxgfr/docker-express-react.git
cd docker-express-react
docker-compose up
docker-compose down
```