Skip to content

Commit

Permalink
Fix docker install issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dphulkar-msft committed Dec 2, 2024
1 parent 6f8772d commit 4a11d50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package common

const AzcopyVersion = "10.28.0"
const AzcopyVersion = "10.28.0-Preview"
const UserAgent = "AzCopy/" + AzcopyVersion
const S3ImportUserAgent = "S3Import " + UserAgent
const GCPImportUserAgent = "GCPImport " + UserAgent
Expand Down
2 changes: 1 addition & 1 deletion docker/dockerinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o
# Create file for installation
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

# Install Docker
# Install docker
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

Expand Down
4 changes: 2 additions & 2 deletions release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1834,8 +1834,8 @@ stages:
- ${{ if eq(parameters.publish_docker_image, true) }}:
- stage: BuildAndPublishDockerImage
# dependsOn: TestArtifacts
# condition: succeeded('TestArtifacts')
dependsOn: TestArtifacts
condition: succeeded('TestArtifacts')
jobs:
- job: Set_1_Ubuntu_Mariner_AMD64
strategy:
Expand Down

0 comments on commit 4a11d50

Please sign in to comment.