11 lines
249 B
YAML
11 lines
249 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "18765:8000"
|
|
healthcheck:
|
|
test: ["CMD", "python3", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/docs')"]
|
|
interval: 3s
|
|
timeout: 5s
|
|
retries: 5
|