mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-03 09:29:46 +00:00
Use Debian instead of Alpine for monero on testnet
This commit is contained in:
parent
95c3cfc52e
commit
95b7460907
1 changed files with 8 additions and 1 deletions
|
@ -72,7 +72,14 @@ CMD ["/run.sh"]
|
|||
}
|
||||
|
||||
pub fn monero(orchestration_path: &Path, network: Network) {
|
||||
monero_internal(network, Os::Alpine, orchestration_path, "monero", "monerod", "18080 18081")
|
||||
monero_internal(
|
||||
network,
|
||||
if network == Network::Dev { Os::Alpine } else { Os::Debian },
|
||||
orchestration_path,
|
||||
"monero",
|
||||
"monerod",
|
||||
"18080 18081",
|
||||
)
|
||||
}
|
||||
|
||||
pub fn monero_wallet_rpc(orchestration_path: &Path) {
|
||||
|
|
Loading…
Reference in a new issue