Skip to content

Instantly share code, notes, and snippets.

View jackesdavid's full-sized avatar

Jackes David Lemos jackesdavid

View GitHub Profile
@madkoding
madkoding / install-docker-deepin.sh
Last active November 16, 2024 13:57
Install Docker-CE script for Deepin Linux
#!/bin/bash
echo "Starting Docker installation on Deepin Linux..."
# Define a mapping from Deepin version to Debian version
map_deepin_to_debian() {
if [ "$1" -lt 20 ]; then
echo "stretch"
elif [ "$1" -ge 20 ]; then
echo "buster"