Skip to content

Instantly share code, notes, and snippets.

View freinet12's full-sized avatar

Freinet Brutus freinet12

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"