Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/maxgfr/docker-express-react
- Owner: maxgfr
- Created: 2020-08-01T18:57:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-29T20:20:40.000Z (9 months ago)
- Last Synced: 2024-04-14T11:31:46.526Z (7 months ago)
- Topics: containerization, docker, docker-react, dockerfile, express, production, react
- Language: JavaScript
- Homepage:
- Size: 244 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
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
```