Files
luminic-space-back-v2/docker-compose.yml
2025-10-31 16:12:01 +03:00

19 lines
358 B
YAML

networks:
postgres-net:
external: true
services:
app:
build:
context: .
dockerfile: Dockerfile
depends_on:
postgres:
condition: service_healthy
environment:
MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE: health,info
ports:
- "8089:8089"
restart: unless-stopped
networks:
- postgres-net