Spaces:
Runtime error
Runtime error
File size: 342 Bytes
273a5e1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
version: '3.8'
services:
backend:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/app
ports:
- "8000:8000"
environment:
- PYTHONUNBUFFERED=1
frontend:
image: node:14
working_dir: /app
volumes:
- ./frontend:/app
ports:
- "3000:3000"
command: npm start
|