|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - |
|
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" |
This fails in execution, asadd-apt-repository is not installed on all Ubuntu 18.04 by default. Instead, it has to be installed with sudo apt install software-properties-common.
Will aim to add this fix to: https://github.com/Phala-Network/solo-mining-scripts/tree/improvement-test
solo-mining-scripts/scripts/en/install_phala.sh
Lines 21 to 22 in f722926
This fails in execution, as
add-apt-repositoryis not installed on all Ubuntu 18.04 by default. Instead, it has to be installed withsudo apt install software-properties-common.Will aim to add this fix to: https://github.com/Phala-Network/solo-mining-scripts/tree/improvement-test