Files
stellar/compose.yml

22 lines
422 B
YAML
Raw Normal View History

2026-03-22 23:33:24 -05:00
services:
app:
build:
2026-03-23 00:06:01 -05:00
context: .
dockerfile: Dockerfile
2026-03-22 23:33:24 -05:00
environment:
PORT: "3000"
LOG_LEVEL: info
2026-03-23 00:16:50 -05:00
DATABASE_PATH: /data/stellar.sqlite
2026-03-22 23:33:24 -05:00
ports:
- "8080:3000"
2026-03-23 00:16:50 -05:00
volumes:
- stellar-data:/data
2026-03-22 23:33:24 -05:00
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000/healthz"]
interval: 10s
timeout: 5s
retries: 5
2026-03-23 00:16:50 -05:00
volumes:
stellar-data: