feat: add docker compose file

This commit is contained in:
agatha 2024-03-31 22:43:44 -04:00
parent 8dae39d13d
commit 5512ced1a1

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
version: '3'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- '8000:8000'
restart: unless-stopped