Add Dockerfile

This commit is contained in:
Takeshi Kimata
2024-06-16 14:30:08 +09:00
parent a0b20d4981
commit a8cd231a82
9 changed files with 605 additions and 26 deletions

14
docker-compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
version: '3'
services:
frontend:
build:
context: ./frontend
ports:
- '8000:8000'
depends_on:
- backend
backend:
build:
context: ./backend
ports:
- '8001:8001'