These are the new commands with TCP_fastopen enabled and log level to minimum (fatal).
The other log options, like max size and no. of files are not working on Synology, like SlavikCA says.
MACHINE 1, NODE 1:
docker run -d --restart unless-stopped --stop-timeout 300 \
--network host \
-e WALLET="...WALLET..." \
-e EMAIL="...EMAIL..." \
-e ADDRESS="...WAN_IP...:28981" \
-e STORAGE="xxTB" \
--mount type=bind,source="/volume1/Storj/Identity/storagenode/",destination=/app/identity \
--mount type=bind,source="/volume1/Storj/",destination=/app/config \
--name storagenode storjlabs/storagenode:latest \
--server.address=":28981" \
--console.address=":14011" \
--server.private-address="127.0.0.1:14012" \
--log.level=fatal \
--filestore.write-buffer-size 4MiB \
--pieces.write-prealloc-size 4MiB \
--storage2.piece-scan-on-startup=true
MACHINE 1, NODE 2:
docker run -d --restart unless-stopped --stop-timeout 300 \
--network host \
-e WALLET="...WALLET..." \
-e EMAIL="...EMAIL..." \
-e ADDRESS="...WAN_IP...:28982" \
-e STORAGE="xxTB" \
--mount type=bind,source="/volume1/Storj/Identity/storagenode/",destination=/app/identity \
--mount type=bind,source="/volume1/Storj/",destination=/app/config \
--name storagenode storjlabs/storagenode:latest \
--server.address=":28982" \
--console.address=":14013" \
--server.private-address="127.0.0.1:14014" \
--log.level=fatal \
--filestore.write-buffer-size 4MiB \
--pieces.write-prealloc-size 4MiB \
--storage2.piece-scan-on-startup=true