mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-18 14:58:22 +02:00
10 lines
154 B
YAML
10 lines
154 B
YAML
services:
|
|
api:
|
|
build: .
|
|
container_name: fastapi-application
|
|
environment:
|
|
PORT: 8000
|
|
ports:
|
|
- '8000:8000'
|
|
restart: "no"
|
|
|