-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker install instruction for csp (#843)
Signed-off-by: sri <[email protected]> Signed-off-by: srinarayan-srikanthan <[email protected]>
- Loading branch information
1 parent
62e06a0
commit 75df2c9
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Update the package index | ||
sudo apt-get -y update | ||
|
||
# Install prerequisites | ||
sudo apt-get -y install ca-certificates curl | ||
|
||
# Create the directory for the Docker GPG key | ||
sudo install -m 0755 -d /etc/apt/keyrings | ||
|
||
# Add Docker's official GPG key | ||
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | ||
|
||
# Set permissions for the GPG key | ||
sudo chmod a+r /etc/apt/keyrings/docker.asc | ||
|
||
# Add Docker repository to the sources list | ||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ | ||
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
|
||
# Update the package index with Docker packages | ||
sudo apt-get -y update | ||
|
||
# Install Docker packages | ||
sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | ||
|
||
# add existing user | ||
sudo usermod -aG docker $USER | ||
|
||
# Optional: Verify that Docker is installed correctly | ||
sudo docker --version |