Skip to content

Instantly share code, notes, and snippets.

View AndreyLL's full-sized avatar

Andrii Lisnychenko AndreyLL

  • Vinnica
View GitHub Profile
@AndreyLL
AndreyLL / docker-install-script.sh
Last active October 13, 2025 15:40
install ssh
#!/bin/bash
set -e # Exit on error
# Check if running as root
if [ "$EUID" -ne 0 ]; then
echo "Please run as root (use sudo)"
exit 1
fi