You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
795 B
YAML
45 lines
795 B
YAML
version: "3.7"
|
|
services:
|
|
frontend:
|
|
build: frontend
|
|
ports:
|
|
- 3000:3000
|
|
stdin_open: true
|
|
volumes:
|
|
- ./frontend:/usr/src/app
|
|
- /usr/src/app/node_modules
|
|
container_name: frontend
|
|
restart: always
|
|
networks:
|
|
- react-express
|
|
depends_on:
|
|
- backend
|
|
|
|
backend:
|
|
container_name: backend
|
|
restart: always
|
|
build: backend
|
|
volumes:
|
|
- ./backend:/usr/src/app
|
|
- /usr/src/app/node_modules
|
|
depends_on:
|
|
- mongo
|
|
networks:
|
|
- express-mongo
|
|
- react-express
|
|
expose:
|
|
- 3000
|
|
mongo:
|
|
container_name: mongo
|
|
restart: always
|
|
image: mongo:4.2.0
|
|
volumes:
|
|
- ./data:/data/db
|
|
networks:
|
|
- express-mongo
|
|
expose:
|
|
- 27017
|
|
networks:
|
|
react-express:
|
|
express-mongo:
|