Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.96 KB

README.md

File metadata and controls

23 lines (15 loc) · 1.96 KB

docker-libretranslate-quay

A LibreTranslate image, on Quay.

Quay page | GitHub page

This image mostly exist for the PussTheCat.org instance, but others are free to use it.

An ARM64 image is planned, but isn't yet possible because some dependencies aren't available on ARM64 (see LibreTranslate/LibreTranslate#186 )

Differences with the official image:

  • The translation models are included so that the image can actually run when it's started (instead of requiring the user to jump into the container to run the script installing the models, and breaking catastrophically when some models fail to download), this creates massive images, around 12GB compressed and 14.5GB uncompressed (instead of around 1GB compressed and around 2.5GB uncompressed for the official image) but it is a worthy tradeoff to have something that works instantly and reliably. Running LibreTranslate requires those models no matter what, so in the end, running the official image will requires the same amount of disk space, this image just does it in a better way.
  • The Dockerfile cleaner and simplified
  • The docker-compose.yml actually has persistence for the api keys and the suggestions storage

Usage:

  • Make a folder where you want the LibreTranslate data to be
  • Download (or copy the content of) the docker-compose.yml and place in this folder
  • Create empty files in this folder (so that docker doesn't make folder with their name): touch api_keys.db suggestions.db
  • (Optional) Customize the environment variable with the settings you want to apply, following the official README: https://github.com/LibreTranslate/LibreTranslate#arguments
  • docker-compose up -d