Files
stellar/compose.yml
jason 1a9209431b
Some checks failed
CI / validate (push) Has been cancelled
m2
2026-03-23 00:06:01 -05:00

17 lines
315 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
environment:
PORT: "3000"
LOG_LEVEL: info
ports:
- "8080:3000"
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/healthz"]
interval: 10s
timeout: 5s
retries: 5