diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c6142f1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +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 \ No newline at end of file