Files
sonr/process-compose.yaml
T

36 lines
643 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
2024-09-27 11:00:54 -04:00
command: "sh scripts/setup_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: "devbox run start:testnet"
2024-09-23 12:39:59 -04:00
restart: on_failure
2024-09-26 15:58:49 -04:00
max_restarts: 1
2024-09-23 12:39:59 -04:00
depends:
- ipfs
2024-09-27 11:00:54 -04:00
motr:
namespace: testnet
command: "devbox run start:motr"
2024-09-27 11:00:54 -04:00
restart: on_failure
max_restarts: 1
depends:
- ipfs
- sonr
2024-09-26 15:58:49 -04:00
tunnel:
namespace: public
2024-09-27 11:00:54 -04:00
command: "cloudflared tunnel run --token $TUNNEL_TOKEN"
2024-09-26 15:58:49 -04:00
restart: on_failure
max_restarts: 1
depends:
- caddy