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.
|
- version: '2'
- services:
- backend:
- volumes:
- - ./backend:/backend
- command: python manage.py runserver 0.0.0.0:8000
- frontend:
- volumes:
- - ./frontend:/frontend
- - node_modules:/frontend/node_modules
- command: npm run dev
- volumes:
- node_modules:
|