mirror of
https://gitee.com/SuperManito/LinuxMirrors
synced 2026-02-10 15:55:36 +08:00
更新文档
This commit is contained in:
22
docs/other/example2.md
Normal file
22
docs/other/example2.md
Normal file
@@ -0,0 +1,22 @@
|
||||
``` bash
|
||||
# !/bin/bash
|
||||
function install_docker() {
|
||||
if command -v docker &>/dev/null; then
|
||||
return
|
||||
fi
|
||||
|
||||
bash <(curl -sSL https://${script_host}/docker.sh) \
|
||||
--install-latest true \
|
||||
--ignore-backup-tips
|
||||
|
||||
if command -v docker &>/dev/null; then
|
||||
echo -e "\n# Docker installation successful.\n# Please run this script again manually after installation."
|
||||
exit 0
|
||||
else
|
||||
echo -e "\n# Docker installation failed.\n# Please check the error message above."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
install_docker
|
||||
```
|
||||
Reference in New Issue
Block a user