9 lines
177 B
YAML
9 lines
177 B
YAML
services:
|
|
web:
|
|
# Build the image from the Dockerfile in the current directory
|
|
build: .
|
|
|
|
# Host the FastAPI application on port 8000
|
|
ports:
|
|
- "8000:8000"
|