MERN (MongoDB, ExpressJS, ReactJS, NodeJS) CRUD (Create, Read, Update, Delete) app.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
782 B

version: "3.7"
services:
react:
image: yutsuo/mern-todo-app
container_name: mern-todo-app
build:
context: .
args:
- HTTP_PROXY=http://192.168.128.1:3128
- HTTPS_PROXY=http://192.168.128.1:3128
- http_proxy=http://192.168.128.1:3128
- https_proxy=http://192.168.128.1:3128
ports:
- "3000:3000"
volumes:
- .:/app
- /app/node_modules
environment:
- PORT=3000
- HTTP_PROXY=http://192.168.128.1:3128
- HTTPS_PROXY=http://192.168.128.1:3128
- http_proxy=http://192.168.128.1:3128
- https_proxy=http://192.168.128.1:3128
- NODE_ENV=development
networks:
default:
ipam:
driver: default
config:
- subnet: 172.17.0.0/24