docker: Raise UDP buffer size in example (#7536)

This commit is contained in:
bt90 2021-03-31 08:57:46 +02:00 committed by GitHub
parent 7778f50b50
commit 34f0feb13a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ altered with the ``PUID`` and ``PGID`` environment variables.
```
$ docker pull syncthing/syncthing
$ docker run -p 8384:8384 -p 22000:22000/tcp -p 22000:22000/udp \
$ docker run --sysctl net.core.rmem_max=2097152 \
-p 8384:8384 -p 22000:22000/tcp -p 22000:22000/udp \
-v /wherever/st-sync:/var/syncthing \
syncthing/syncthing:latest
```