-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Engine - Install based app #2561
Comments
A zipfile was found in the body of your issue. Click to show contents preview
#!/bin/bash
sudo apt remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
sudo rm -f /etc/apt/sources.list.d/docker.list
sudo rm -f /etc/apt/keyrings/docker.asc
exit 1
#!/bin/bash
version=$(lsb_release -cs)
if [[ $version == "jammy" || $version == "mantic" || $version == "focal" ]]; then
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $version stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
else
error "Error: Unsupported version of system."
exit 1
fi
|
Hello there 👋 Please respond as soon as possible if a Pi-Apps maintainer requests more information from you. Stale issues will be closed after a lengthy period of time with no response. |
please read the https://pi-apps.io/wiki/development/Creating-an-app/ documentation as well as refer to other applications in pi-apps for proper script writing. Bullseye/Bookworm and Focal/Jammy support are required for pi-apps applications see the app eligibility rubric #185 . I do not believe docker engine falls under it. closing this as there are so many things that have not been followed that an install script for docker engine would be an entire rewrite |
What is the name of the app?
Docker Engine
(Optional) Where is the app hosted?
https://docker.com
About the app
Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools, code, and runtime. (from)
Upload file or Add PR Link
zip
Docker Engine.zip
Confirmations
The text was updated successfully, but these errors were encountered: