Skip to content

πŸ” Syncthing Relay to help Syncthing clients relay data when they can't communicate directly due to things like NAT routers

License

Notifications You must be signed in to change notification settings

kylemanna/docker-syncthing-relay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

31 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Syncthing Relay Docker Image

Build Status Docker Stars Docker Pulls ImageLayers

Overview

Syncthing Relay to help Syncthing clients relay data when they can't communicate directly due to things like NAT routers and firewalls blocking inbound TCP connections.

More detailed description on my blog.

Extensively tested on Digital Ocean $5/mo node

Upstream Links

Quick Start

Just run:

docker run --rm -p 22067:22067 -p 22070:22070 kylemanna/syncthing-relay

Verify your server shows up at http://relays.syncthing.net/

Or private relay:

docker run --rm -p 22067:22067 -p 22070:22070 kylemanna/syncthing-relay -pools=""

Private relays and persistent keys

When using the commands above, docker will remove the old container once it's no longer running. This is fine for public relays where the key does not matter, but becomes impractical for private relays where the URL must contain the key signature.

For those using private relays, it may be a good idea to use persistent storage for the certificate. To that effect, the first step is to create a volume with the command below (only needs to be done once):

docker volume create syncthing-relay

Then run the container mapping the /relaysrv directory into the volume:

docker run -p 22067:22067 -p 22070:22070 --mount source=syncthing-relay,target=/relaysrv -d kylemanna/syncthing-relay -pools=""

Automatically restarting the container on reboot

To automatically restart the container after a host reboot, replace the --rm option in any of the docker invocations above with --restart=always. This is a simple solution for those who want to have a relay server that survives host restarts but prefer not to deal with systemd.

Using Systemd to Auto Start the Docker Container

Here's the quick start guide for setting up a systemd service that will listen on the defualt ports and start at boot time. It will also attempt to pull down image updates each time the service starts and automatically restart after 10 seconds if the process exits. This Docker container preserves no state across starts.

cd /etc/systemd/system
sudo curl -O https://raw.githubusercontent.com/kylemanna/docker-syncthing-relay/master/init/docker-syncthing-relay.service
sudo systemctl daemon-reload
sudo systemctl enable --now docker-syncthing-relay.service
sudo systemctl status docker-syncthing-relay.service

About

πŸ” Syncthing Relay to help Syncthing clients relay data when they can't communicate directly due to things like NAT routers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published