Skip to content
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

Closed
3 tasks done
FixeQyt opened this issue Mar 12, 2024 · 3 comments
Closed
3 tasks done

Docker Engine - Install based app #2561

FixeQyt opened this issue Mar 12, 2024 · 3 comments

Comments

@FixeQyt
Copy link

FixeQyt commented Mar 12, 2024

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

Copy link
Contributor

A zipfile was found in the body of your issue.
The sha1sum of the zip was: 3bcf24495eb8aee6e2793bb0618f887eba5727de

Click to show contents preview

uninstall

#!/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

install-64

#!/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

description

Hey, I publish Docker on Pi-Apps

Command (be sure you ran with sudo): docker

(This isn't my app I just published it there)

You must have one of these: 
    Ubuntu Mantic 23.10
    Ubuntu Jammy 22.04 (LTS)
    Ubuntu Focal 20.04 (LTS)

credits

Docker

website

https://docker.com/

Copy link
Contributor

Hello there 👋
Thanks for submitting your first issue to the Pi-Apps project! We'll try to get back to you as soon as possible.
In the meantime, we encourage you join our Discord server, where you can ask any questions you might have.

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.

@theofficialgman
Copy link
Collaborator

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

@theofficialgman theofficialgman closed this as not planned Won't fix, can't repro, duplicate, stale Mar 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants