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