Files
stellar/docker/docker-compose.yml
jason 177be6332b
Some checks failed
CI / validate (push) Has been cancelled
M0
2026-03-22 23:33:24 -05:00

17 lines
323 B
YAML

services:
app:
build:
context: ..
dockerfile: docker/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