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