1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-19 07:18:06 +02:00

fastapi: add dev envs support

Signed-off-by: Milas Bowman <milas.bowman@docker.com>
This commit is contained in:
Milas Bowman 2022-07-05 11:58:31 -04:00
parent 8784f95a69
commit 035e3c5b43
4 changed files with 44 additions and 6 deletions

View file

@ -1,10 +1,11 @@
services:
api:
build: .
build:
context: .
target: builder
container_name: fastapi-application
environment:
PORT: 8000
ports:
- '8000:8000'
restart: "no"