12 lines
240 B
YAML
12 lines
240 B
YAML
services:
|
|
pjl:
|
|
# Build the image from the Dockerfile in the current directory
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: pjl:0.9
|
|
|
|
# Host the FastAPI application on port 8000
|
|
ports:
|
|
- "8000:8000"
|