選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

docker-compose.override.yml 275 B

12345678910111213
  1. version: '2'
  2. services:
  3. backend:
  4. volumes:
  5. - ./backend:/backend
  6. command: python manage.py runserver 0.0.0.0:8000
  7. frontend:
  8. volumes:
  9. - ./frontend:/frontend
  10. - node_modules:/frontend/node_modules
  11. command: npm run dev
  12. volumes:
  13. node_modules: