mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
36 lines
643 B
YAML
36 lines
643 B
YAML
|
version: "0.6"
|
||
|
|
||
|
processes:
|
||
|
ipfs:
|
||
|
namespace: testnet
|
||
|
command: "sh scripts/setup_ipfs.sh"
|
||
|
background: true
|
||
|
availability:
|
||
|
restart: on_failure
|
||
|
max_restarts: 0
|
||
|
|
||
|
sonr:
|
||
|
namespace: testnet
|
||
|
command: "devbox run start:testnet"
|
||
|
restart: on_failure
|
||
|
max_restarts: 1
|
||
|
depends:
|
||
|
- ipfs
|
||
|
|
||
|
hway:
|
||
|
namespace: testnet
|
||
|
command: "devbox run start:hway"
|
||
|
restart: on_failure
|
||
|
max_restarts: 1
|
||
|
depends:
|
||
|
- ipfs
|
||
|
- sonr
|
||
|
|
||
|
tunnel:
|
||
|
namespace: public
|
||
|
command: "cloudflared tunnel run --token $TUNNEL_TOKEN"
|
||
|
restart: on_failure
|
||
|
max_restarts: 1
|
||
|
depends:
|
||
|
- caddy
|