forked from Miracle656/veil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
35 lines (33 loc) · 885 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
35 lines (33 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: "3.8"
# Local Stellar development network — Stellar Core + Horizon + Soroban RPC bundled
# via the official stellar/quickstart image.
#
# Usage:
# docker compose -f docker-compose.dev.yml up
#
# Horizon API: http://localhost:8000
# Soroban RPC: http://localhost:8000/soroban/rpc
# Friendbot: http://localhost:8000/friendbot?addr=<G-address>
services:
stellar:
image: stellar/quickstart:latest
platform: linux/amd64
ports:
- "8000:8000"
environment:
# Run as a standalone local network with a deterministic genesis ledger
- NETWORK=local
command: --local --enable-soroban-rpc
healthcheck:
test:
[
"CMD",
"curl",
"--silent",
"--fail",
"http://localhost:8000/health"
]
interval: 10s
timeout: 5s
retries: 12
start_period: 30s