- 3,788
- 1,297
- NAS
- DS4l8play, DS202j, DS3623xs+, DSM 7.3.3-25847
Just wanted to call attention to a resource by one our contributors @Dr_Frankenstein ...
LanguageTool provides a browser spell check feature, as well as some grammar checks, and offers a synonym feature. But rather than share all your post content with that organization, you can run the tool on your NAS.
I found his post, easy to follow. The only modification I made was to drop the network host mode. FWIW, my docker-compose file follows...
LanguageTool provides a browser spell check feature, as well as some grammar checks, and offers a synonym feature. But rather than share all your post content with that organization, you can run the tool on your NAS.
I found his post, easy to follow. The only modification I made was to drop the network host mode. FWIW, my docker-compose file follows...
Code:
version: "3.8"
services:
languagetool:
image: erikvl87/languagetool:latest
container_name: languagetool
# network_mode: host
ports:
- 8010:8010
environment:
- langtool_languageModel=/ngrams
- Java_Xms=512m
- Java_Xmx=1g
volumes:
- /volume1/docker/languagetool/ngrams:/ngrams
restart: unless-stopped