Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaofeng1227 committed Jan 3, 2025
2 parents 3e70be3 + 9b04104 commit e185e56
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion install/install_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ install_docker_custom() {
sudo mkdir -p /usr/local/lib/docker/cli-plugins/
sudo curl -SL "https://github.com/docker/compose/releases/latest/download/docker-compose-linux-$(uname -m)" -o /usr/local/lib/docker/cli-plugins/docker-compose
sudo chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
elif [ "$lsb_dist" = "openeuler" ]; then
sudo dnf update -y
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --add-repo=https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
sudo sed -i 's+$releasever+8+' /etc/yum.repos.d/docker-ce.repo
sudo dnf makecache
sudo dnf install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
else
repos=("${repos_base[@]/%//${lsb_dist}/docker-ce.repo}")
sudo dnf remove -y podman || sudo yum remove -y podman
Expand Down Expand Up @@ -204,4 +211,4 @@ command_exists() {
download_docker_script

# install docker
install_docker_official
install_docker_official
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"OS": {
"Fedora": [
"41",
"40"
"40",
"39"
],
"RedHat": [
"9",
Expand Down

0 comments on commit e185e56

Please sign in to comment.