2024-12-22 17:01:11 -05:00
|
|
|
version: "0.5"
|
|
|
|
|
|
|
|
|
|
environment:
|
|
|
|
|
- "PC_DISABLE_TUI=true"
|
|
|
|
|
log_location: "./tmp/logs"
|
|
|
|
|
log_level: "debug"
|
2024-10-03 19:25:42 -04:00
|
|
|
|
|
|
|
|
processes:
|
2024-12-22 17:01:11 -05:00
|
|
|
IPFS:
|
|
|
|
|
namespace: testnet
|
|
|
|
|
command: "task ipfs:start"
|
|
|
|
|
availability:
|
|
|
|
|
restart: "always"
|
|
|
|
|
|
|
|
|
|
Sonr:
|
2024-12-19 06:22:44 -05:00
|
|
|
namespace: testnet
|
2024-12-22 17:01:11 -05:00
|
|
|
command: "task sonrd:start"
|
|
|
|
|
depends_on:
|
|
|
|
|
ipfs:
|
|
|
|
|
condition: process_completed
|
|
|
|
|
environment:
|
|
|
|
|
- "SONR_NETWORK=testnet"
|
2024-11-26 22:05:50 -05:00
|
|
|
|
2024-12-22 17:01:11 -05:00
|
|
|
Hway:
|
2024-12-19 06:22:44 -05:00
|
|
|
namespace: testnet
|
2024-12-22 17:01:11 -05:00
|
|
|
command: "hway"
|
|
|
|
|
depends_on:
|
|
|
|
|
sonr:
|
|
|
|
|
condition: process_completed_successfully
|
|
|
|
|
|