CodeCards/docker-compose.yml

22 lines
377 B
YAML
Raw Normal View History

2024-08-04 17:49:28 +00:00
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
working_dir: /app
ports:
- "5000:5000"
volumes:
- ./backend:/app
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- ./frontend:/app
- ./frontend:/node_modules