SjjThaler opened a new issue, #8309: URL: https://github.com/apache/gravitino/issues/8309
The how-to-build.md section on how to install Docker on Ubuntu (WSL) contains an unecessary and incomplete line "curl -fsSl https" which should be removed. Furthermore the "apt-key" command is deprecated. The GPG-key should instead be added as explained on https://docs.docker.com/engine/install/ubuntu/. These are the current bash comands from how-to-build.md: ``` curl -fsSL https curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" sudo apt update sudo apt install docker-ce sudo service docker start sudo docker run hello-world sudo usermod -aG docker $USER ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
