Skip to content

Commit

Permalink
2.1.11-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaofeng1227 committed Aug 7, 2024
1 parent 024882a commit dd55ce2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions install/install_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ Install_Docker(){
fi
fi

if [[ $(cat /etc/os-release) =~ "Amazon Linux" ]]; then
sudo dnf install docker -y
sudo systemctl enable docker
sudo systemctl start docker
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
fi

# For Ubuntu, Debian, or Raspbian
if type apt >/dev/null 2>&1; then
# Wait for apt to be unlocked
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "2.1.11-rc2",
"version": "2.1.11-rc3",
"plugins": {
"portainer": "0.1.1",
"nginx": "0.0.8",
"gitea": "0.0.6",
"myapps": "0.2.5",
"appstore": "0.2.3",
"appstore": "0.2.4",
"settings": "0.1.2",
"navigator": "0.5.10"
},
Expand Down

0 comments on commit dd55ce2

Please sign in to comment.