This Dockerized microservice provides general-purpose tools for translations management via HTTP API endpoints on port 5002.
The image exposes all the API endpoints on port 5002.
A volume must be mounted to store the available translations.
Example docker-compose.yml
services:
translation-service:
image: edertone/translation-service:X.X.X
ports: # Remove if you don't want external access to this container
- '5002:5002'
volumes:
# Store all the translations you want to use
# The folders structure must be: TODO
- ./my/local/translations-folder:/app/translations-folder