Files
sonr/process-compose.yaml
T

27 lines
457 B
YAML
Raw Normal View History

2024-09-23 12:39:59 -04:00
version: "0.6"
processes:
ipfs:
2024-09-23 12:39:59 -04:00
namespace: testnet
command: "sh scripts/bootstrap_ipfs.sh"
2024-09-23 12:39:59 -04:00
background: true
availability:
restart: on_failure
max_restarts: 0
2024-09-23 12:39:59 -04:00
sonr:
namespace: testnet
command: "make sh-testnet"
2024-09-23 12:39:59 -04:00
restart: on_failure
max_restarts: 3
depends:
- ipfs
proxy:
namespace: testnet
command: "devbox run proxy"
restart: on_failure
max_restarts: 3
depends:
- sonr