15 lines
315 B
YAML
15 lines
315 B
YAML
services:
|
|
app:
|
|
build:
|
|
network:
|
|
- postgres-net
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
environment:
|
|
MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE: health,info
|
|
ports:
|
|
- "8089:8089"
|
|
restart: unless-stopped |