diff --git a/fastapi/docker-compose.yml b/fastapi/docker-compose.yml new file mode 100644 index 0000000..bcd0c6e --- /dev/null +++ b/fastapi/docker-compose.yml @@ -0,0 +1,10 @@ +services: + api: + build: . + container_name: fastapi-application + environment: + PORT: 8000 + ports: + - '8000:8000' + restart: "no" +