Docker-compose
Commands
Setup
version: "3"
services:
node_backend:
build: ./backend
ports:
- "3001:3001"
volumes:
- ./backend:/app
react_frontend:
build: ./client
ports:
- "3000:3000"
volumes:
- ./client:/appConfig Options
build
image
Last updated