https://github.com/edertone/docker-translation
General-purpose tools for translations management
https://github.com/edertone/docker-translation
Last synced: 4 months ago
JSON representation
General-purpose tools for translations management
- Host: GitHub
- URL: https://github.com/edertone/docker-translation
- Owner: edertone
- License: apache-2.0
- Created: 2026-03-24T10:18:14.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-24T10:36:59.000Z (4 months ago)
- Last Synced: 2026-03-25T12:58:21.635Z (4 months ago)
- Language: TypeScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Translation Microservice
This Dockerized microservice provides general-purpose tools for translations management via HTTP API endpoints on port 5002.
## Docker image configuration
The image exposes all the API endpoints on port `5002`.
A volume must be mounted to store the available translations.
**Example `docker-compose.yml`**
```yaml
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
```
## API Documentation
- [TODO Endpoints](./docs/todo.md)
## Development documentation
- [Development, testing and deployment documentation](./docs/develop-test-publish.md)