Skip to content

Instantly share code, notes, and snippets.

View sh4hids's full-sized avatar
🤔
nothing special I guess

Shahidul Islam Majumder sh4hids

🤔
nothing special I guess
View GitHub Profile
@madkoding
madkoding / install-docker-deepin.sh
Last active February 13, 2025 17:32
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"