Skip to content

Instantly share code, notes, and snippets.

View expbox77's full-sized avatar
🌳
숲 만들기

ExpBox77 expbox77

🌳
숲 만들기
  • 18:28 (UTC +09:00)
View GitHub Profile
@pedrolamas
pedrolamas / docker-iptables-fix.sh
Created August 18, 2020 19:32
Script to fix Docker iptables on Synology NAS
#!/bin/bash
currentAttempt=0
totalAttempts=10
delay=15
while [ $currentAttempt -lt $totalAttempts ]
do
currentAttempt=$(( $currentAttempt + 1 ))
echo "Attempt $currentAttempt of $totalAttempts..."