Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ services:
- STELLAR_RPC_URL=http://stellar-node:8000
- STELLAR_NETWORK_PASSPHRASE=Standalone Network ; February 2021
depends_on:
- stellar-node
stellar-node:
condition: service_healthy
command: bash

stellar-node:
Expand All @@ -23,6 +24,12 @@ services:
environment:
- NETWORK=local
command: --local --enable-soroban-rpc
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 10s
timeout: 5s
retries: 10
start_period: 30s

volumes:
cargo-cache:
Expand Down