Use Debian instead of Alpine for monero on testnet

This commit is contained in:
Luke Parker 2024-02-10 20:36:08 -05:00
parent 95c3cfc52e
commit 95b7460907
No known key found for this signature in database

View file

@ -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) {