diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 00000000..21d53ac5 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,19 @@ +version: "3.8" +services: + api: + build: + context: ./api + ports: + - "8000:8000" + volumes: + - ./api:/usr/src/app + environment: + ENV_FILE_PATH: .env + + frontend: + build: + context: ./front-end-nextjs + ports: + - "3000:3000" + volumes: + - ./front-end-nextjs:/usr/src/app