Skip to content

Instantly share code, notes, and snippets.

@almottier
Forked from florian-h05/docker-iptables-fix.md
Created September 26, 2023 17:01
Show Gist options
  • Save almottier/87ebd72a897b22be33a43de45e57399f to your computer and use it in GitHub Desktop.
Save almottier/87ebd72a897b22be33a43de45e57399f to your computer and use it in GitHub Desktop.
Script to fix Docker iptables on Synology NAS

Instructions

  • Open DSM on your Synology NAS
  • Save the above file to your Synology NAS
  • Open Control Panel and click on Task Scheduler
  • Click Create button -> Triggered Task -> User defined script
  • Give it a name, select "root" for User and "Boot-up" for Event, tick Enabled
  • Click Task Settings, paste "bash /volume1/path to script" on the User-defined script
  • Click OK button and you're done! The script will run after every reboot and should survive any updates of DSM!

More info

Please check the following post:

https://www.pedrolamas.com/2020/11/04/exposing-the-client-ips-to-docker-containers-on-synology-nas/

#!/bin/bash
currentAttempt=0
totalAttempts=10
delay=15
while [ $currentAttempt -lt $totalAttempts ]
do
currentAttempt=$(( $currentAttempt + 1 ))
echo "Attempt $currentAttempt of $totalAttempts..."
result=$(iptables-save)
if [[ $result =~ "-A DOCKER -i docker0 -j RETURN" ]]; then
echo "Docker rules found! Modifying..."
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
iptables -t nat -A PREROUTING -m addrtype --dst-type LOCAL ! --dst 127.0.0.0/8 -j DOCKER
echo "Done!"
break
fi
echo "Docker rules not found! Sleeping for $delay seconds..."
sleep $delay
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment