Skip to content

Instantly share code, notes, and snippets.

View EmRa228's full-sized avatar

Emad Rahnama EmRa228

View GitHub Profile
@EmRa228
EmRa228 / gc.sh
Created October 2, 2025 12:01
ubuntu 24.04 guacamole Dockerized xRDP to itself. bash script
#!/usr/bin/env bash
set -euo pipefail
echo "==> Updating base system"
apt update && apt -y upgrade
echo "==> Useful tools"
apt -y install curl wget unzip git htop neofetch inxi vim nano ca-certificates gnupg lsb-release
echo "==> Install Docker (engine + compose plugin)"
@EmRa228
EmRa228 / daemon.json
Created October 3, 2024 08:12
Alternative docker registry mirrors
{
"registry-mirrors": [
"https://registry.docker.ir",
"https://docker.haiocloud.com",
"https://registry.docker.ir",
"https://docker.arvancloud.ir",
"https://docker.host:5000"
]
}